streams/view/tpl/cloud_directory.tpl

85 lines
3.4 KiB
Smarty
Raw Normal View History

<div id="cloud-drag-area" class="section-content-wrapper-np">
{{if $tiles}}
<table id="cloud-index">
<tr id="new-upload-progress-bar-1"></tr> {{* this is needed to append the upload files in the right order *}}
</table>
{{if $parentpath}}
<div class="cloud-container" >
<div class="cloud-icon tiles"><a href="{{$parentpath.path}}">
2017-11-21 00:05:24 +00:00
<div class="cloud-icon-container"><i class="fa fa-fw fa-level-up" ></i></div>
</a>
</div>
<div class="cloud-title"><a href="{{$parentpath.path}}">..</a>
</div>
</div>
{{/if}}
{{foreach $entries as $item}}
<div class="cloud-container">
<div class="cloud-icon tiles"><a href="{{$item.fullPath}}">
{{if $item.photo_icon}}
<img src="{{$item.photo_icon}}" title="{{$item.type}}" >
{{else}}
2017-11-21 00:05:24 +00:00
<div class="cloud-icon-container"><i class="fa fa-fw {{$item.iconFromType}}" title="{{$item.type}}"></i></div>
{{/if}}
</a>
</div>
<div class="cloud-title"><a href="{{$item.fullPath}}">
{{$item.displayName}}
</a>
</div>
{{if $item.is_owner}}
{{/if}}
</div>
{{/foreach}}
<div class="clear"></div>
{{else}}
2014-12-27 09:10:56 +00:00
<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>
2014-12-28 17:16:27 +00:00
<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>
2014-12-27 09:10:56 +00:00
</tr>
{{if $parentpath}}
<tr>
2016-04-30 19:59:02 +00:00
<td><i class="fa fa-level-up"></i>{{*{{$parentpath.icon}}*}}</td>
2014-12-27 09:10:56 +00:00
<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>
2014-12-27 09:10:56 +00:00
</tr>
{{/if}}
2017-12-01 00:24:18 +00:00
<tr id="new-upload-progress-bar-1"></tr> {{* this is needed to append the upload files in the right order *}}
2014-12-27 09:10:56 +00:00
{{foreach $entries as $item}}
2014-12-28 17:16:27 +00:00
<tr id="cloud-index-{{$item.attachId}}">
2016-05-01 14:34:55 +00:00
<td><i class="fa {{$item.iconFromType}}" title="{{$item.type}}"></i></td>
2014-12-27 09:10:56 +00:00
<td><a href="{{$item.fullPath}}">{{$item.displayName}}</a></td>
{{if $item.is_owner}}
<td class="cloud-index-tool">{{$item.attachIcon}}</td>
2017-10-07 10:34:43 +00:00
<td class="cloud-index-tool"><div id="file-edit-{{$item.attachId}}" class="spinner-wrapper"><div class="spinner s"></div></div></td>
2016-04-30 19:59:02 +00:00
<td class="cloud-index-tool"><i class="fakelink fa fa-pencil" onclick="filestorage(event, '{{$nick}}', {{$item.attachId}});"></i></td>
2018-05-03 03:08:59 +00:00
<td class="cloud-index-tool"><a href="#" title="{{$delete}}" onclick="dropItem('{{$item.fileStorageUrl}}/{{$item.attachId}}/delete/json', '#cloud-index-{{$item.attachId}},#cloud-tools-{{$item.attachId}}'); return false;"><i class="fa fa-trash-o drop-icons"></i></a></td>
2014-12-27 09:10:56 +00:00
{{else}}
2019-02-19 21:04:28 +00:00
<td></td><td></td><td></td>{{if $is_admin || $item.is_creator}}<td class="cloud-index-tool"><a href="#" title="{{if $is_admin}}{{$admin_delete}}{{else}}{{$delete}}{{/if}}" onclick="dropItem('{{$item.fileStorageUrl}}/{{$item.attachId}}/delete/json', '#cloud-index-{{$item.attachId}},#cloud-tools-{{$item.attachId}}'); return false;"><i class="fa fa-trash-o drop-icons"></i></a>{{else}}<td>{{/if}}</td>
2014-12-27 09:10:56 +00:00
{{/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>
2014-12-27 09:10:56 +00:00
</tr>
2015-04-12 13:01:06 +00:00
<tr id="cloud-tools-{{$item.attachId}}">
2014-12-28 17:16:27 +00:00
<td id="perms-panel-{{$item.attachId}}" colspan="9"></td>
</tr>
2014-12-27 09:10:56 +00:00
{{/foreach}}
</table>
{{/if}}
</div>