12 lines
398 B
Smarty
Executable File
12 lines
398 B
Smarty
Executable File
{*Smarty template*}
|
|
|
|
<div id="path">
|
|
<a href="{$UI_BROWSER}?act=fileBrowse&id={$structure.id}&tree=Y" class="button">[Tree view]</a> |
|
|
{foreach from=$structure.pathdata item=o}
|
|
{if $o.type == 'Folder'}
|
|
<a href="{$UI_BROWSER}?act=fileBrowse&id={$o.id}">[{$o.name}]</a> /
|
|
{else}
|
|
{$o.name}
|
|
{/if}
|
|
{/foreach}
|
|
</div> |