aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/field_yesno.tpl
blob: 8a4cda55b0c6c4c0e59bb1b97fe353f4722ea048 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
	<div class='clearfix form-group'>
		<label class="mainlabel" 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}}">
			<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>
		<small class='form-text text-muted'>{{$field.3}}</small>
	</div>