2016-04-25 18:36:40 -04:00
|
|
|
|
2019-02-03 15:33:59 -05:00
|
|
|
<div class="form-group field select">
|
2016-04-25 18:36:40 -04:00
|
|
|
<label for="id_{{$field.0}}">{{$field.1}}</label>
|
|
|
|
<select name="{{$field.0}}" id="id_{{$field.0}}" class="form-control" aria-describedby="{{$field.0}}_tip">
|
2019-02-03 15:33:59 -05:00
|
|
|
{{foreach $field.4 as $opt=>$val}}
|
|
|
|
<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>
|
|
|
|
{{/foreach}}
|
2016-04-25 18:36:40 -04:00
|
|
|
</select>
|
2019-02-03 15:33:59 -05:00
|
|
|
{{if $field.3}}
|
2018-12-13 22:35:51 -05:00
|
|
|
<span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3 nofilter}}</span>
|
2019-02-03 15:33:59 -05:00
|
|
|
{{/if}}
|
|
|
|
</div>
|