diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-02-19 10:24:21 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-02-19 10:24:21 +0100 |
commit | 51cef9d8f06586a4e7d4353cb5d7cc3fcddcf97a (patch) | |
tree | 7320bcbfad978c915899b3763ddc53b288472d2f /apps/files_trashbin/templates/index.php | |
parent | 9a93db96421b712d8b8485478db4b84594571c68 (diff) | |
download | nextcloud-server-51cef9d8f06586a4e7d4353cb5d7cc3fcddcf97a.tar.gz nextcloud-server-51cef9d8f06586a4e7d4353cb5d7cc3fcddcf97a.zip |
allow user to delete selected files from the trash bin permanently
Diffstat (limited to 'apps/files_trashbin/templates/index.php')
-rw-r--r-- | apps/files_trashbin/templates/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index c3e51b4becd..c948c94d552 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -25,6 +25,13 @@ </th> <th id="headerDate"> <span id="modified"><?php echo $l->t( 'Deleted' ); ?></span> + <span class="selectedActions"> + <a href="" class="delete"> + <?php echo $l->t('Delete')?> + <img class="svg" alt="<?php echo $l->t('Delete')?>" + src="<?php echo OCP\image_path("core", "actions/delete.svg"); ?>" /> + </a> + </span> </th> </tr> </thead> |