nextcloud/apps/files_trashbin/templates/index.php

57 lines
1.8 KiB
PHP
Raw Normal View History

2014-04-28 19:58:23 +04:00
<?php /** @var $l OC_L10N */ ?>
2013-01-18 16:11:29 +04:00
<div id="controls">
<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
<input type="hidden" name="dir" value="" id="dir">
<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>
<th id='headerName' class="hidden column-name">
2013-10-09 13:11:55 +04:00
<div id="headerName-container">
<input type="checkbox" id="select_all_trash" class="select-all"/>
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>
<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">
2014-12-18 18:54:39 +03:00
<img class="svg" alt=""
src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" />
2013-02-28 00:46:37 +04:00
<?php p($l->t('Restore'))?>
2013-01-18 16:11:29 +04:00
</a>
</span>
2013-10-09 13:11:55 +04:00
</div>
2013-01-18 16:11:29 +04:00
</th>
<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>
<span class="selectedActions">
<a href="" class="delete-selected">
2013-02-28 00:46:37 +04:00
<?php p($l->t('Delete'))?>
2014-12-18 18:54:39 +03:00
<img class="svg" alt=""
2013-02-28 00:46:37 +04:00
src="<?php print_unescaped(OCP\image_path("core", "actions/delete.svg")); ?>" />
</a>
</span>
2013-01-18 16:11:29 +04:00
</th>
</tr>
</thead>
<tbody id="fileList">
</tbody>
<tfoot>
</tfoot>
2013-01-18 16:11:29 +04:00
</table>