diff options
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}} |