dropboxSearchFile.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. {% include 'hackathon/base.html' %}
  5. <div class="container">
  6. <h4><a href="{% url 'dropbox' %}">Back to Search</a><h4>
  7. <h2>Search Results:</h2>
  8. <hr>
  9. {% if data %}
  10. <table class="table table-bordered table-hover table-striped tablesorter">
  11. <thead>
  12. <tr>
  13. <th class="header"> Type <i class="icon-sort"></i></th>
  14. <th class="header" style="width:60%"> Path <i class="icon-sort"></i></th>
  15. <th class="header"> Size <i class="icon-sort"></i></th>
  16. <th class="header" style="width:24%"> Modified <i class="icon-sort"></i></th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. {% for element in data %}
  21. <tr>
  22. <td>
  23. {% if element.is_dir %}
  24. <img src="http://icons.iconarchive.com/icons/media-design/hydropro-v2/512/Folder-icon.png" alt="Folder" width="40" />
  25. {% else %}
  26. <img src="http://www.veryicon.com/icon/png/File%20Type/Slika%201.0%20Location%20Icons/Location%20%20%20FILE.png" alt="File" width="40" />
  27. {% endif %}
  28. </td>
  29. <td> {{ element.path }} </td>
  30. <td> {{ element.size }} </td>
  31. <td> {{ element.modified }} </td>
  32. </tr>
  33. {% endfor %}
  34. </tbody>
  35. </table>
  36. {% else %}
  37. <h4> No files were found</h4>
  38. {% endif %}
  39. </div>
  40. </body>
  41. </html>