sintonia/livesupport/modules/htmlUI/var/html/templates/tree.tpl

21 lines
527 B
Smarty
Raw Normal View History

2005-02-03 17:55:35 +01:00
{*Smarty template*}
<div id="tree">
{if is_array($structure.treedata)}
{foreach from=$structure.treedata item=o}
<div style="background-color: {cycle values="#eeeeee,#dadada"}">
{$structure.treedata.type}
{if $structure.treedata.tree}
{str_repeat str='&nbsp;' count=3}
{else}
{str_repeat str='&nbsp;&nbsp;' count=$o.level}
{/if}
<a href="{$UI_BROWSER}?id={$o.id}">[{$o.name}]</a><br>
</div>
{/foreach}
{/if}
</div>