list.php 946 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php /** @var $l OC_L10N */ ?>
  2. <div id="controls">
  3. <div id="file_action_panel"></div>
  4. </div>
  5. <div id='notification'></div>
  6. <div id="emptycontent" class="hidden"></div>
  7. <input type="hidden" name="dir" value="" id="dir">
  8. <div class="nofilterresults hidden">
  9. <div class="icon-search"></div>
  10. <h2><?php p($l->t('No entries found in this folder')); ?></h2>
  11. <p></p>
  12. </div>
  13. <table id="filestable">
  14. <thead>
  15. <tr>
  16. <th id='headerName' class="hidden column-name">
  17. <div id="headerName-container">
  18. <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a>
  19. </div>
  20. </th>
  21. <th id="headerDate" class="hidden column-mtime">
  22. <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Share time' )); ?></span><span class="sort-indicator"></span></a>
  23. </th>
  24. </tr>
  25. </thead>
  26. <tbody id="fileList">
  27. </tbody>
  28. <tfoot>
  29. </tfoot>
  30. </table>