mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
8 lines
410 B
Smarty
8 lines
410 B
Smarty
<div class='mb-3 field select'>
|
|
<label style="font-weight: normal;" for='id_{{$field.0}}'>{{$field.1}}</label>
|
|
<select class="form-control" 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='help-block'>{{$field.3}}</span>
|
|
</div>
|