fe74a3d697
The empty spans from the templates mess up the layout sometimes, and are useless weight anyway. Lets get rid of them.
11 lines
340 B
Smarty
11 lines
340 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}}" aria-describedby="{{$field.0}}_tip">
|
|
{{$field.4}}
|
|
</select>
|
|
{{if $field.3}}
|
|
<span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
|
|
{{/if}}
|
|
</div>
|