aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/field_select_disabled.tpl
blob: e241be895f3ed50514fa8f15857fce8b2d92d071 (plain) (blame)
1
2
3
4
5
6
7
	<div class='field select'>
		<label class="mainlabel" style="font-weight: normal;" for='id_{{$field.0}}'>{{$field.1}}</label>
		<select disabled="true" name='{{$field.0}}' id='id_{{$field.0}}'>
			{{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
		</select>
		<span class='field_help'>{{$field.3}}</span>
	</div>