list.php 986 B

123456789101112131415161718192021222324252627282930
  1. <?php /** @var \OCP\IL10N $l */ ?>
  2. <div class="emptyfilelist emptycontent hidden"></div>
  3. <div class="nofilterresults emptycontent hidden">
  4. <div class="icon-search"></div>
  5. <h2><?php p($l->t('No entries found in this folder')); ?></h2>
  6. </div>
  7. <table class="files-filestable list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>">
  8. <thead>
  9. <tr>
  10. <th class="hidden column-name">
  11. <div class="column-name-container">
  12. <a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a>
  13. </div>
  14. </th>
  15. <th class="hidden column-mtime">
  16. <a class="columntitle" data-sort="mtime"><span><?php p($l->t('Share time')); ?></span><span class="sort-indicator"></span></a>
  17. </th>
  18. <th class="hidden column-expiration">
  19. <a class="columntitle"><span><?php p($l->t('Expiration date')); ?></span></a>
  20. </th>
  21. </tr>
  22. </thead>
  23. <tbody class="files-fileList">
  24. </tbody>
  25. <tfoot>
  26. </tfoot>
  27. </table>