12 lines
393 B
Smarty
Raw Normal View History

2017-06-24 00:58:56 +03:00
{if $items}
{foreach from=$items item=item}
{$item.level}
<option value="{$item.navigation_item_id}" {if $navigation_item_selected == $item.navigation_item_id}selected{/if}>
{if $item.level > 0}
{section name=section start=0 loop=$item.level-1}&mdash;&nbsp;{/section}
{/if}
{$item.title|escape}
</option>
{include file="$select_tpl" items=$item.children}
{/foreach}
{/if}