14 lines
462 B
Smarty
14 lines
462 B
Smarty
|
|
|
<a href="{$UI_BROWSER}?act=fileList&id={$structure.id}&tree=Y">##Tree view##</a>
|
|
|
|
|
##Folder Structure##:
|
|
{foreach from=$structure.pathdata item=o}
|
|
{if $o.type == 'Folder'}
|
|
<a href="{$UI_BROWSER}?act=fileList&id={$o.id}">##{$o.name}##</a> /
|
|
{else}
|
|
##{$o.name}##
|
|
{/if}
|
|
{/foreach}
|
|
|
|
<input type="button" class="button" value="##new folder##" onclick="newFolder()">
|