5d1d0d1a9f
The empty spans from the templates mess up the layout sometimes, and are useless weight anyway. Lets get rid of them.
17 lines
570 B
Smarty
17 lines
570 B
Smarty
|
|
<div class='field yesno'>
|
|
<label for='id_{{$field.0}}'>{{$field.1}}</label>
|
|
<div class='onoff' id="id_{{$field.0}}_onoff">
|
|
<input type="hidden" name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2|escape:'html'}}" aria-describedby='{{$field.0}}_tip'>
|
|
<a href="#" class='off'>
|
|
{{if $field.4}}{{$field.4.0}}{{else}}OFF{{/if}}
|
|
</a>
|
|
<a href="#" class='on'>
|
|
{{if $field.4}}{{$field.4.1}}{{else}}ON{{/if}}
|
|
</a>
|
|
</div>
|
|
{{if $field.3}}
|
|
<span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
|
|
{{/if}}
|
|
</div>
|