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.
 
 
 
 
 
 

8 lines
288 B

<select name="{$field.ins_id|escape}" class="form-select">
{foreach from=$data.languages key=code item=label}
<option value="{$code|escape}"
{if $code eq $field.value}selected="selected"{/if}>
{$label|escape}
</option>
{/foreach}
</select>