]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/field_intcheckbox.tpl
Avoid memory issue in exception
[friendica.git] / view / theme / frio / templates / field_intcheckbox.tpl
1
2         <div class="form-group field checkbox">
3                 <input type="checkbox" name="{{$field.0}}" id="id_{{$field.0}}" value="{{$field.3}}" {{if $field.2}}checked="checked"{{/if}} aria-checked="{{if $field.2}}true{{else}}false{{/if}}" aria-describedby="{{$field.0}}_tip">
4                 <label for="id_{{$field.0}}">{{$field.1}}</label>
5                 {{if $field.4}}
6                 <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.4 nofilter}}</span>
7                 {{/if}}
8         </div>
9         <div class="clear"></div>