Blame view
sources/apps/files_sharing/templates/list.php
795 Bytes
|
6d9380f96
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<?php /** @var $l OC_L10N */ ?> <div id="controls"> <div id="file_action_panel"></div> </div> <div id='notification'></div> <div id="emptycontent" class="hidden"></div> <input type="hidden" name="dir" value="" id="dir"> <table id="filestable"> <thead> <tr> <th id='headerName' class="hidden column-name"> <div id="headerName-container"> <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> </div> </th> <th id="headerDate" class="hidden column-mtime"> <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Share time' )); ?></span><span class="sort-indicator"></span></a> </th> </tr> </thead> <tbody id="fileList"> </tbody> <tfoot> </tfoot> </table> |