mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
8 lines
371 B
Smarty
8 lines
371 B
Smarty
|
<div class='form-group field select'>
|
||
|
<label for='id_{{$field.0}}'>{{$field.1}}</label>
|
||
|
<select class="form-control" 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='help-block'>{{$field.3}}</span>
|
||
|
</div>
|