2016-10-28 22:46:28 +03:00
|
|
|
<?php /** @var $l \OCP\IL10N */ ?>
|
2014-04-30 19:42:35 +04:00
|
|
|
<div id='notification'></div>
|
|
|
|
|
2014-05-20 14:00:42 +04:00
|
|
|
<div id="emptycontent" class="hidden"></div>
|
2014-04-30 19:42:35 +04:00
|
|
|
|
|
|
|
<input type="hidden" name="dir" value="" id="dir">
|
|
|
|
|
2015-01-06 16:34:35 +03:00
|
|
|
<div class="nofilterresults hidden">
|
2015-01-05 15:11:50 +03:00
|
|
|
<div class="icon-search"></div>
|
|
|
|
<h2><?php p($l->t('No entries found in this folder')); ?></h2>
|
|
|
|
</div>
|
|
|
|
|
2018-11-06 11:06:24 +03:00
|
|
|
<table id="filestable" class="list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>">
|
2014-04-30 19:42:35 +04:00
|
|
|
<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">
|
2014-05-21 14:54:34 +04:00
|
|
|
<a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Share time' )); ?></span><span class="sort-indicator"></span></a>
|
2014-04-30 19:42:35 +04:00
|
|
|
</th>
|
2015-09-30 19:20:55 +03:00
|
|
|
<th class="hidden column-expiration">
|
|
|
|
<a class="columntitle"><span><?php p($l->t( 'Expiration date' )); ?></span></a>
|
|
|
|
</th>
|
2014-04-30 19:42:35 +04:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="fileList">
|
|
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
|
|
</tfoot>
|
|
|
|
</table>
|