AVE.CMS v3.28
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
476 B

{if $document->document_linked_navi_id}
{assign var="navigation_item_selected" value=$document->document_linked_navi_id scope="global"}
{/if}
<select name="document_linked_navi_id" id="document_linked_navi_id">
<option value="0">&nbsp;</option>
{foreach from=$navigations item=navigation}
<optgroup label="({$navigation->navigation_id}) {$navigation->title|escape}">
{include file="$select_tpl" items=$navigation->navigation_items}
</optgroup>
{/foreach}
</select>