diff options
author | marijus <mario@mariovavti.com> | 2014-12-28 18:16:27 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-12-28 18:16:27 +0100 |
commit | 801ab709adfa808072f70fe1bf4b712ddc33df42 (patch) | |
tree | ccef8b25b9cf177ba8626bc81c459c0a97cab2e3 /view/tpl/cloud_directory.tpl | |
parent | 0e0a4e4999583df96f74a78589231e1e7329f7d4 (diff) | |
download | volse-hubzilla-801ab709adfa808072f70fe1bf4b712ddc33df42.tar.gz volse-hubzilla-801ab709adfa808072f70fe1bf4b712ddc33df42.tar.bz2 volse-hubzilla-801ab709adfa808072f70fe1bf4b712ddc33df42.zip |
more work on files
Diffstat (limited to 'view/tpl/cloud_directory.tpl')
-rw-r--r-- | view/tpl/cloud_directory.tpl | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl index 99bba9474..01b9078fe 100644 --- a/view/tpl/cloud_directory.tpl +++ b/view/tpl/cloud_directory.tpl @@ -1,12 +1,12 @@ -<div class="section-content-wrapper generic-content-wrapper"> +<div class="generic-content-wrapper"> <table id="cloud-index"> <tr> - <th></th> - <th>{{$name}}</th> - <th></th><th></th><th></th><th></th> - <th>{{*{{$type}}*}}</th> - <th class="hidden-xs">{{$size}}</th> - <th class="hidden-xs">{{$lastmod}}</th> + <th width="1%"></th> + <th width="92%">{{$name}}</th> + <th width="1%"></th><th width="1%"></th><th width="1%"></th><th width="1%"></th> + <th width="1%">{{*{{$type}}*}}</th> + <th width="1%" class="hidden-xs">{{$size}}</th> + <th width="1%" class="hidden-xs">{{$lastmod}}</th> </tr> {{if $parentpath}} <tr> @@ -19,7 +19,7 @@ </tr> {{/if}} {{foreach $entries as $item}} - <tr id="cloud-panel-{{$item.attachId}}"> + <tr id="cloud-index-{{$item.attachId}}"> <td><i class="{{$item.iconFromType}}" title="{{$item.type}}"></i></td> <td><a href="{{$item.fullPath}}">{{$item.displayName}}</a></td> {{if $item.is_owner}} @@ -35,7 +35,9 @@ <td class="hidden-xs">{{$item.sizeFormatted}}</td> <td class="hidden-xs">{{$item.lastmodified}}</td> </tr> - <tr><td id="perms-panel-{{$item.attachId}}" colspan="9"></td></tr> + <tr> + <td id="perms-panel-{{$item.attachId}}" colspan="9"></td> + </tr> {{/foreach}} </table> </div> |