fe74a3d697
The empty spans from the templates mess up the layout sometimes, and are useless weight anyway. Lets get rid of them.
10 lines
474 B
Smarty
10 lines
474 B
Smarty
|
|
<div class="form-group field checkbox">
|
|
<input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" value="{{$field.3|escape:'html'}}" {{if $field.2}}checked="checked"{{/if}} aria-checked="{{if $field.2}}true{{else}}false{{/if}}" aria-describedby="{{$field.0}}_tip">
|
|
<label for="id_{{$field.0}}">{{$field.1}}</label>
|
|
{{if $field.4}}
|
|
<span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.4}}</span>
|
|
{{/if}}
|
|
</div>
|
|
<div class="clear"></div>
|