diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-17 21:45:34 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-12-17 21:45:34 +0100 |
commit | 38931176df4e7f2a70ba5b7875182a902d33f419 (patch) | |
tree | af8a4f938836006802d2885a6aae8961775187a6 | |
parent | ab2ae91b114d4863961509dad55b3525b901cefb (diff) | |
download | nextcloud-server-38931176df4e7f2a70ba5b7875182a902d33f419.tar.gz nextcloud-server-38931176df4e7f2a70ba5b7875182a902d33f419.zip |
apply empty state for 'Deleted files'
-rw-r--r-- | apps/files_trashbin/templates/index.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index fc18e88c41e..82bc360a9f5 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -4,7 +4,11 @@ </div> <div id='notification'></div> -<div id="emptycontent" class="hidden"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div> +<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> <input type="hidden" name="dir" value="" id="dir"> |