diff options
author | friendica <info@friendica.com> | 2014-02-18 19:17:11 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-18 19:17:11 -0800 |
commit | 87bb568d678c88efacc5d849af7a474e8efc9359 (patch) | |
tree | 83641988624e4ce27946ce9318fe0c12a8cb7250 /view | |
parent | 5747e20e502cd4504aef4371b30631265579e81c (diff) | |
download | volse-hubzilla-87bb568d678c88efacc5d849af7a474e8efc9359.tar.gz volse-hubzilla-87bb568d678c88efacc5d849af7a474e8efc9359.tar.bz2 volse-hubzilla-87bb568d678c88efacc5d849af7a474e8efc9359.zip |
change edit/delete to icons on filestorage page
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/filestorage.tpl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl index 7b88c6440..1995b95e1 100644 --- a/view/tpl/filestorage.tpl +++ b/view/tpl/filestorage.tpl @@ -2,13 +2,14 @@ <div class="generic-content-wrapper"> {{if $limit}}{{$limitlabel}}{{$limit}}{{/if}} {{if $used}} {{$usedlabel}}{{$used}}{{/if}} - + <br /> + <br /> {{foreach $files as $key => $items}} {{foreach $items as $item}} <div class="files-list-item"> - <a href="{{$baseurl}}/{{$item.id}}/edit">{{$edit}}</a> | - <a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}}</a> | + <a href="{{$baseurl}}/{{$item.id}}/edit" title="{{$edit}}"><i class="icon-pencil"></i></a> + <a href="{{$baseurl}}/{{$item.id}}/delete" title="{{$delete}}"><i class="icon-remove drop-icons"></i></a> {{if ! $item.dir}}<a href="attach/{{$item.download}}">{{/if}}{{$item.title}}{{if ! $item.dir}}</a>{{/if}} {{if ! $item.dir}} | {{$item.size}} bytes{{else}}{{$directory}}{{/if}} |