2020-08-17 18:16:50 +03:00
|
|
|
<?php /** @var \OCP\IL10N $l */ ?>
|
2013-01-18 16:11:29 +04:00
|
|
|
<div id="controls">
|
2013-10-28 23:22:06 +04:00
|
|
|
<div id="file_action_panel"></div>
|
2013-01-18 16:11:29 +04:00
|
|
|
</div>
|
|
|
|
<div id='notification'></div>
|
|
|
|
|
2014-12-17 23:45:34 +03:00
|
|
|
<div id="emptycontent" class="hidden">
|
|
|
|
<div class="icon-delete"></div>
|
|
|
|
<h2><?php p($l->t('No deleted files')); ?></h2>
|
|
|
|
<p><?php p($l->t('You will be able to recover deleted files from here')); ?></p>
|
|
|
|
</div>
|
2013-01-18 16:11:29 +04:00
|
|
|
|
2014-05-09 00:06:30 +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>
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
|
2018-11-06 11:06:24 +03:00
|
|
|
<table id="filestable" class="list-container <?php p($_['showgridview'] ? 'view-grid' : '') ?>">
|
2013-01-18 16:11:29 +04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2017-09-29 02:36:10 +03:00
|
|
|
<th id="headerSelection" class="hidden column-selection">
|
|
|
|
<input type="checkbox" id="select_all_trash" class="select-all checkbox"/>
|
|
|
|
<label for="select_all_trash">
|
|
|
|
<span class="hidden-visually"><?php p($l->t('Select all'))?></span>
|
|
|
|
</label>
|
|
|
|
</th>
|
2014-04-03 22:57:06 +04:00
|
|
|
<th id='headerName' class="hidden column-name">
|
2013-10-09 13:11:55 +04:00
|
|
|
<div id="headerName-container">
|
2020-04-09 17:07:47 +03:00
|
|
|
<a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a>
|
2014-04-03 22:57:06 +04:00
|
|
|
<span id="selectedActionsList" class='selectedActions'>
|
2018-06-02 18:15:19 +03:00
|
|
|
<a href="" class="actions-selected">
|
|
|
|
<span class="icon icon-more"></span>
|
|
|
|
<span><?php p($l->t('Actions'))?></span>
|
2017-12-30 09:51:50 +03:00
|
|
|
</a>
|
2014-04-03 22:57:06 +04:00
|
|
|
</span>
|
2013-10-09 13:11:55 +04:00
|
|
|
</div>
|
2013-01-18 16:11:29 +04:00
|
|
|
</th>
|
2014-04-03 22:57:06 +04:00
|
|
|
<th id="headerDate" class="hidden column-mtime">
|
2020-04-09 17:07:47 +03:00
|
|
|
<a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t('Deleted')); ?></span><span class="sort-indicator"></span></a>
|
2013-01-18 16:11:29 +04:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="fileList">
|
|
|
|
</tbody>
|
2014-02-11 19:52:56 +04:00
|
|
|
<tfoot>
|
|
|
|
</tfoot>
|
2013-01-18 16:11:29 +04:00
|
|
|
</table>
|