diff options
author | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2014-06-26 02:01:53 +0200 |
---|---|---|
committer | Klaus Weidenbach <Klaus.Weidenbach@gmx.net> | 2014-06-26 02:01:53 +0200 |
commit | 45dde16f3e728e6bca1d1d8953ef8d58a1b74986 (patch) | |
tree | 6628e6cbace91e1d28b9fb883c538859943a971f /view/tpl | |
parent | 37561a18bf271de549650c964d400e2455395ee9 (diff) | |
download | volse-hubzilla-45dde16f3e728e6bca1d1d8953ef8d58a1b74986.tar.gz volse-hubzilla-45dde16f3e728e6bca1d1d8953ef8d58a1b74986.tar.bz2 volse-hubzilla-45dde16f3e728e6bca1d1d8953ef8d58a1b74986.zip |
Templified cloud's directory listing.
Moved HTML for the directory listing from include/reddav.php to it's
own template file.
Still need to clean it up bit more, but should be useable already.
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/cloud_directory.tpl | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl new file mode 100644 index 000000000..cdcab1990 --- /dev/null +++ b/view/tpl/cloud_directory.tpl @@ -0,0 +1,48 @@ +<h1>{{$header}}</h1> +<table id="cloud-index"> + <tr> + <th></th> + <th>{{t('Name')}} </th> + <th></th><th></th><th></th> + <th>{{t('Type')}} </th> + <th>{{t('Size')}} </th> + <th>{{t('Last modified')}}</th> + </tr> + <tr><td colspan="8"><hr></td></tr> + +{{if $parentpath}} + <tr> + <td>{{$parentpath.icon}}</td> + <td><a href="{{$parentpath.path}}" title="{{t('parent')}}">..</a></td> + <td></td><td></td><th></td> + <td>[{{t('parent')}}]</td> + <td></td> + <td></td> + </tr> +{{/if}} + + +{{foreach $entries as $item}} + <tr> + <td>{{$item.icon}}</td> + <td style="min-width: 15em"><a href="{{$item.fullPath}}">{{$item.displayName}}</a></td> + +{{if $item.is_owner}} + <td>{{$item.attachIcon}}</td> + <td style="position:relative;"><a href="{{$item.fileStorageUrl}}/{{$item.attachId}}/edit" title="{{t('Edit')}}"><i class="icon-pencil btn btn-default"></i></a></td> + <td><a href="{{$item.fileStorageUrl}}/{{$item.attachId}}/delete" title="{{t('Delete')}}" onclick="return confirm('{{t('Are you sure you want to delete this item?')}}');"><i class="icon-remove btn btn-default drop-icons"></i></a></td> +{{else}} + <td></td><td></td><td></td> +{{/if}} + <td>{{$item.type}}</td> + <td>{{$item.sizeFormatted}}</td> + <td>{{$item.lastmodified}}</td> + </tr> +{{/foreach}} + + <tr><td colspan="8"><hr></td></tr> +</table> + +{{if $quota.limit || $quota.used}} + <p><strong>{{t('Total')}}</strong> {{$quota.desc}}</p> +{{/if}} |