entry_select.html

 1   <#if option_list?has_content>
 2   <span class="border-dashed">
 3   	<select class="quicklinks_entry_select quicklinks_entry_select_${entry_select.idQuicklinks}" name="${entry_select.title}" onchange="javascript:window.open(this.options[this.selectedIndex].value, '${entry_select.target}');" id="${entry_select.title}">
 4   		<#list option_list as option>
 5   			<option value="${option.url}">${option.title}</option>
 6   		</#list>
 7   	</select>
 8   </span>
 9   </#if>
 10