2016-10-28 22:46:28 +03:00
|
|
|
<?php /** @var $l \OCP\IL10N */ ?>
|
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>
|
|
|
|
|
2013-03-04 20:04:50 +04:00
|
|
|
<table id="filestable">
|
2013-01-18 16:11:29 +04:00
|
|
|
<thead>
|
|
|
|
<tr>
|
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">
|
2015-09-28 14:45:24 +03:00
|
|
|
<input type="checkbox" id="select_all_trash" class="select-all checkbox"/>
|
2014-12-18 18:54:39 +03:00
|
|
|
<label for="select_all_trash">
|
|
|
|
<span class="hidden-visually"><?php p($l->t('Select all'))?></span>
|
|
|
|
</label>
|
2014-04-03 22:57:06 +04:00
|
|
|
<a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a>
|
|
|
|
<span id="selectedActionsList" class='selectedActions'>
|
2013-01-18 20:50:44 +04:00
|
|
|
<a href="" class="undelete">
|
2016-02-25 19:23:32 +03:00
|
|
|
<span class="icon icon-history"></span>
|
|
|
|
<span><?php p($l->t('Restore'))?></span>
|
2013-01-18 16:11:29 +04: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">
|
|
|
|
<a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Deleted' )); ?></span><span class="sort-indicator"></span></a>
|
2013-02-19 13:24:21 +04:00
|
|
|
<span class="selectedActions">
|
2014-04-04 18:43:35 +04:00
|
|
|
<a href="" class="delete-selected">
|
2016-02-25 19:23:32 +03:00
|
|
|
<span><?php p($l->t('Delete'))?></span>
|
|
|
|
<span class="icon icon-delete"></span>
|
2013-02-19 13:24:21 +04:00
|
|
|
</a>
|
|
|
|
</span>
|
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>
|