mirror of https://github.com/avecms/AVE.cms.git
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
498 B
12 lines
498 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" style="width: 450px;"> |
|
<option value="0"> </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>
|
|
|