Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <form accept-charset="UTF-8" action="..." class="fileupload" enctype="multipart/form-data" method="post">
  2. <input id="id" name="id" type="hidden" value="1">
  3. <strong class="text-bg">Drag new images here <input id="hotel_image_file" name="hotel_image[file]" type="file" style="display: none;"></strong>
  4. </form>
  5.  
  6. <div id="order-notice" class="" style="display:none">
  7. <p>Image order has been updated</p>
  8. </div>
  9.  
  10. <ul id="image-uploads"></ul>
  11.  
  12. <div id="images-uploaded" class="panel-body" data-reorderpath="BACKEND PATH TO REORDER FILES">
  13. <!-- loop over uploaded images -->
  14. <div class="thumb" id="image-4"> <!-- id is what is sent to server -->
  15. <a href='xxx.jpg'><img alt="Thumb 1" src="xxx.jpg"></a>
  16. <div class="">
  17. <a class="" data-confirm="Are you sure?" data-method="delete" href="DELETE IMAGE PATH" rel="nofollow">
  18. DELETE
  19. </a>
  20. <a class="handle" href="#">
  21. MOVE
  22. </a>
  23. </div>
  24. </div> <!-- /end image thumb and buttons -->
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement