aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/field_yesno.tpl
blob: f5a909833f4604b4fef1b2e7bdb51730b0456cfa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
	<div class='field yesno'>
		<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>
		<span class='field_help'>{{$field.3}}</span>
	</div>