recentlist.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php /** @var $l \OCP\IL10N */ ?>
  2. <div id='notification'></div>
  3. <div id="emptycontent" class="hidden"></div>
  4. <input type="hidden" name="dir" value="" id="dir">
  5. <div class="nofilterresults hidden">
  6. <div class="icon-search"></div>
  7. <h2><?php p($l->t('No entries found in this folder')); ?></h2>
  8. <p></p>
  9. </div>
  10. <table id="filestable">
  11. <thead>
  12. <tr>
  13. <th id='headerName' class="hidden column-name">
  14. <div id="headerName-container">
  15. <a class="name sort columntitle"
  16. data-sort="name"><span><?php p($l->t('Name')); ?></span></a>
  17. </div>
  18. </th>
  19. <th id="headerSize" class="hidden column-size">
  20. <a class="size sort columntitle"
  21. data-sort="size"><span><?php p($l->t('Size')); ?></span></a>
  22. </th>
  23. <th id="headerDate" class="hidden column-mtime">
  24. <a id="modified" class="columntitle"
  25. data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span
  26. class="sort-indicator"></span></a>
  27. <span class="selectedActions"><a href="" class="delete-selected">
  28. <span><?php p($l->t('Delete')) ?></span>
  29. <span class="icon icon-delete"></span>
  30. </a></span>
  31. </th>
  32. </tr>
  33. </thead>
  34. <tbody id="fileList">
  35. </tbody>
  36. <tfoot>
  37. </tfoot>
  38. </table>