diff options
author | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2014-06-28 23:14:34 +0200 |
---|---|---|
committer | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2014-06-28 23:14:34 +0200 |
commit | dfe45342f6739bef9b3dff8e49641bb58998c757 (patch) | |
tree | 0a0af03f9cee403f5d05a97e0a6feab3708d34a6 /view/tpl/filestorage.tpl | |
parent | dda949ee3b6f81662762f6598348bd68cf40ae83 (diff) | |
download | volse-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.tpl | 23 |
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> - <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}} - -</div> - {{/foreach}} - {{/foreach}} - </div> - - <div class="clear"></div> - -{{/if}} |