diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
commit | 80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc (patch) | |
tree | 484f2101b78ae16f397310470b7e30f2c03d7b57 /view/tpl/cloud_directory.tpl | |
parent | 83c4dd6bda1677a3441d06247ea076094394703e (diff) | |
download | volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.gz volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.bz2 volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.zip |
Revert "move theme specific files to theme dir"
This reverts commit e332d1074f1b663ec66d37b0f575df2e41d5535c.
Diffstat (limited to 'view/tpl/cloud_directory.tpl')
-rw-r--r-- | view/tpl/cloud_directory.tpl | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl new file mode 100644 index 000000000..adc8584c3 --- /dev/null +++ b/view/tpl/cloud_directory.tpl @@ -0,0 +1,45 @@ +<div id="cloud-drag-area" class="section-content-wrapper-np"> + <table id="cloud-index"> + <tr> + <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="d-none d-md-table-cell">{{$size}}</th> + <th width="1%" class="d-none d-md-table-cell">{{$lastmod}}</th> + </tr> + {{if $parentpath}} + <tr> + <td><i class="fa fa-level-up"></i>{{*{{$parentpath.icon}}*}}</td> + <td><a href="{{$parentpath.path}}" title="{{$parent}}">..</a></td> + <td></td><td></td><td></td><td></td> + <td>{{*[{{$parent}}]*}}</td> + <td class="d-none d-md-table-cell"></td> + <td class="d-none d-md-table-cell"></td> + </tr> + {{/if}} + <tr id="new-upload-progress-bar--1"></tr> {{* this is needed to append the upload files in the right order *}} + {{foreach $entries as $item}} + <tr id="cloud-index-{{$item.attachId}}"> + <td><i class="fa {{$item.iconFromType}}" title="{{$item.type}}"></i></td> + <td><a href="{{$item.fullPath}}">{{$item.displayName}}</a></td> + {{if $item.is_owner}} + <td class="cloud-index-tool">{{$item.attachIcon}}</td> + <td id="file-edit-{{$item.attachId}}" class="cloud-index-tool"></td> + <td class="cloud-index-tool"><i class="fakelink fa fa-pencil" onclick="filestorage(event, '{{$nick}}', {{$item.attachId}});"></i></td> + <td class="cloud-index-tool"><a href="#" title="{{$delete}}" onclick="dropItem('{{$item.fileStorageUrl}}/{{$item.attachId}}/delete', '#cloud-index-{{$item.attachId}},#cloud-tools-{{$item.attachId}}'); return false;"><i class="fa fa-trash-o drop-icons"></i></a></td> + + {{else}} + <td></td><td></td><td></td><td></td> + {{/if}} + <td>{{*{{$item.type}}*}}</td> + <td class="d-none d-md-table-cell">{{$item.sizeFormatted}}</td> + <td class="d-none d-md-table-cell">{{$item.lastmodified}}</td> + </tr> + <tr id="cloud-tools-{{$item.attachId}}"> + <td id="perms-panel-{{$item.attachId}}" colspan="9"></td> + </tr> + + {{/foreach}} + </table> +</div> |