aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/filestorage.tpl
diff options
context:
space:
mode:
authortuscanhobbit <tuscanhobbit@users.noreply.github.com>2014-06-28 23:14:34 +0200
committertuscanhobbit <tuscanhobbit@users.noreply.github.com>2014-06-28 23:14:34 +0200
commitdfe45342f6739bef9b3dff8e49641bb58998c757 (patch)
tree0a0af03f9cee403f5d05a97e0a6feab3708d34a6 /view/tpl/filestorage.tpl
parentdda949ee3b6f81662762f6598348bd68cf40ae83 (diff)
downloadvolse-hubzilla-dfe45342f6739bef9b3dff8e49641bb58998c757.tar.gz
volse-hubzilla-dfe45342f6739bef9b3dff8e49641bb58998c757.tar.bz2
volse-hubzilla-dfe45342f6739bef9b3dff8e49641bb58998c757.zip
Checkboxes were not aligned in connedit, added a table
Diffstat (limited to 'view/tpl/filestorage.tpl')
-rw-r--r--view/tpl/filestorage.tpl23
1 files changed, 0 insertions, 23 deletions
diff --git a/view/tpl/filestorage.tpl b/view/tpl/filestorage.tpl
deleted file mode 100644
index 1995b95e1..000000000
--- a/view/tpl/filestorage.tpl
+++ /dev/null
@@ -1,23 +0,0 @@
-{{if $files}}
-
- <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" title="{{$edit}}"><i class="icon-pencil"></i></a>&nbsp;&nbsp;&nbsp;&nbsp;
- <a href="{{$baseurl}}/{{$item.id}}/delete" title="{{$delete}}"><i class="icon-remove drop-icons"></i></a>&nbsp;&nbsp;&nbsp;&nbsp;
- {{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}}
-
-</div>
- {{/foreach}}
- {{/foreach}}
- </div>
-
- <div class="clear"></div>
-
-{{/if}}