]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/field_checkbox.tpl
Merge pull request #5823 from annando/ap-attach
[friendica.git] / view / theme / frio / templates / field_checkbox.tpl
1
2         <div class="field checkbox" id="div_id_{{$field.0}}">
3                         <input type="hidden" name="{{$field.0}}" value="0">
4                         <input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" value="1" {{if $field.2}}checked="checked"{{/if}} aria-checked="{{if $field.2}}true{{else}}false{{/if}}" aria-describedby="{{$field.0}}_tip" {{if $field.4}}{{$field.4}}{{/if}}>
5                         <label for="id_{{$field.0}}">
6                                 {{$field.1}}
7                                 {{if $field.3}}
8                                 <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
9                                 {{/if}}
10                         </label>
11         </div>