diff options
author | friendica <info@friendica.com> | 2013-09-08 19:12:46 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-08 19:12:46 -0700 |
commit | f8c709830fe9268ccf9abe4801eb7a6ca39eff2d (patch) | |
tree | 5cdd173506522f891f98b3985445d33ea056cbc4 /view/tpl/filestorage.tpl | |
parent | 135c1887328f7c2e03d03c0c41d6ab4773996519 (diff) | |
parent | dcc74185d08c0be3320b6a547ec19c2b3db05544 (diff) | |
download | volse-hubzilla-f8c709830fe9268ccf9abe4801eb7a6ca39eff2d.tar.gz volse-hubzilla-f8c709830fe9268ccf9abe4801eb7a6ca39eff2d.tar.bz2 volse-hubzilla-f8c709830fe9268ccf9abe4801eb7a6ca39eff2d.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'view/tpl/filestorage.tpl')
-rw-r--r-- | view/tpl/filestorage.tpl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl new file mode 100644 index 000000000..995b52cc8 --- /dev/null +++ b/view/tpl/filestorage.tpl @@ -0,0 +1,22 @@ +{{if $files}} + + <div class="generic-content-wrapper"> + {{if $limit}}{{$limitlabel}}{{$limit}}{{/if}} {{if $used}} {{$usedlabel}}{{$used}}{{/if}} + + + {{foreach $files as $key => $items}} + {{foreach $items as $item}} + <div class="files-list-item"> + <a href="attach/{{$item.download}}">{{$download}}</a> | + <a href="{{$baseurl}}/{{$item.id}}/delete">{{$delete}} + <a href="page/{{$channel}}/{{$item.title}}">{{$title}}</a> {{$item.title}} | + {{$item.size}} bytes + +</div> + {{/foreach}} + {{/foreach}} + </div> + + <div class="clear"></div> + +{{/if}} |