index.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php /** @var \OCP\IL10N $l */ ?>
  2. <div class="files-controls">
  3. <div></div>
  4. </div>
  5. <div class="emptyfilelist emptycontent hidden">
  6. <div class="icon-delete"></div>
  7. <h2><?php p($l->t('No deleted files')); ?></h2>
  8. <p><?php p($l->t('You will be able to recover deleted files from here')); ?></p>
  9. </div>
  10. <div class="nofilterresults emptycontent hidden">
  11. <div class="icon-search"></div>
  12. <h2><?php p($l->t('No entries found in this folder')); ?></h2>
  13. <p></p>
  14. </div>
  15. <table class="files-filestable list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>">
  16. <thead>
  17. <tr>
  18. <th class="hidden column-selection">
  19. <input type="checkbox" id="select_all_trash" class="select-all checkbox"/>
  20. <label for="select_all_trash">
  21. <span class="hidden-visually"><?php p($l->t('Select all'))?></span>
  22. </label>
  23. </th>
  24. <th class="hidden column-name">
  25. <div class="column-name-container">
  26. <a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a>
  27. <span class='selectedActions'>
  28. <a href="#" class="actions-selected">
  29. <span class="icon icon-more"></span>
  30. <span><?php p($l->t('Actions'))?></span>
  31. </a>
  32. </span>
  33. </div>
  34. </th>
  35. <th class="hidden column-mtime">
  36. <a class="columntitle" data-sort="mtime"><span><?php p($l->t('Deleted')); ?></span><span class="sort-indicator"></span></a>
  37. </th>
  38. </tr>
  39. </thead>
  40. <tbody class="files-fileList">
  41. </tbody>
  42. <tfoot>
  43. </tfoot>
  44. </table>