2014-11-18 12:53:45 -05:00
|
|
|
<div id='notification'></div>
|
|
|
|
|
|
2014-12-17 05:04:18 -05:00
|
|
|
<div id="emptycontent" class="hidden">
|
|
|
|
|
<div class="icon-starred"></div>
|
2017-04-21 08:11:49 -04:00
|
|
|
<h2><?php p($l->t('No favorites yet')); ?></h2>
|
2014-12-17 14:59:26 -05:00
|
|
|
<p><?php p($l->t('Files and folders you mark as favorite will show up here')); ?></p>
|
2014-12-17 05:04:18 -05:00
|
|
|
</div>
|
2014-11-18 12:53:45 -05:00
|
|
|
|
|
|
|
|
<input type="hidden" name="dir" value="" id="dir">
|
|
|
|
|
|
2015-01-06 08:34:35 -05:00
|
|
|
<div class="nofilterresults hidden">
|
2015-01-05 07:11:50 -05:00
|
|
|
<div class="icon-search"></div>
|
|
|
|
|
<h2><?php p($l->t('No entries found in this folder')); ?></h2>
|
|
|
|
|
<p></p>
|
|
|
|
|
</div>
|
2018-11-06 03:06:24 -05:00
|
|
|
<table id="filestable" class="list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>">
|
2014-11-18 12:53:45 -05:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th id='headerName' class="hidden column-name">
|
|
|
|
|
<div id="headerName-container">
|
2020-04-09 10:07:47 -04:00
|
|
|
<a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a>
|
2014-11-18 12:53:45 -05:00
|
|
|
</div>
|
|
|
|
|
</th>
|
|
|
|
|
<th id="headerSize" class="hidden column-size">
|
|
|
|
|
<a class="size sort columntitle" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a>
|
|
|
|
|
</th>
|
|
|
|
|
<th id="headerDate" class="hidden column-mtime">
|
2020-04-09 10:07:47 -04:00
|
|
|
<a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a>
|
2018-06-02 11:15:19 -04:00
|
|
|
<span class="selectedActions">
|
|
|
|
|
<a href="" class="delete-selected">
|
|
|
|
|
<img class="svg" alt=""
|
|
|
|
|
src="<?php print_unescaped(OCP\Template::image_path("core", "actions/delete.svg")); ?>" />
|
|
|
|
|
<?php p($l->t('Delete'))?>
|
|
|
|
|
</a>
|
|
|
|
|
</span>
|
2014-11-18 12:53:45 -05:00
|
|
|
</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="fileList">
|
|
|
|
|
</tbody>
|
|
|
|
|
<tfoot>
|
|
|
|
|
</tfoot>
|
|
|
|
|
</table>
|