diff options
author | me <none@none.me> | 2020-11-14 23:37:18 +0100 |
---|---|---|
committer | me <none@none.me> | 2020-11-14 23:37:18 +0100 |
commit | 78f150cfbc1b713bfba3101fdc3f1fd624120637 (patch) | |
tree | 8c0ac65880da053c8f0b2e35908540702a058820 /view/tpl/field_checkbox.tpl | |
parent | 06273e980e7aa978d0145f1e5ecd92cbc2aef66e (diff) | |
download | volse-hubzilla-78f150cfbc1b713bfba3101fdc3f1fd624120637.tar.gz volse-hubzilla-78f150cfbc1b713bfba3101fdc3f1fd624120637.tar.bz2 volse-hubzilla-78f150cfbc1b713bfba3101fdc3f1fd624120637.zip |
air.s1: field templates checkbox/input/select and one new
Diffstat (limited to 'view/tpl/field_checkbox.tpl')
-rw-r--r--[-rwxr-xr-x] | view/tpl/field_checkbox.tpl | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/view/tpl/field_checkbox.tpl b/view/tpl/field_checkbox.tpl index f779f937c..b1665f75f 100755..100644 --- a/view/tpl/field_checkbox.tpl +++ b/view/tpl/field_checkbox.tpl @@ -1,5 +1,25 @@ <div id="{{$field.0}}_container" class="clearfix form-group checkbox"> - <label for="id_{{$field.0}}">{{$field.1}}</label> + <label for="id_{{$field.0}}">{{$field.1}}{{if $field.6}}<sup class="required zuiqmid"> {{$field.6}}</sup>{{/if}}</label> <div class="float-right"><input type="checkbox" name='{{$field.0}}' id='id_{{$field.0}}' value="1" {{if $field.2}}checked="checked"{{/if}} {{if $field.5}}{{$field.5}}{{/if}} /><label class="switchlabel" for='id_{{$field.0}}'> <span class="onoffswitch-inner" data-on='{{if $field.4}}{{$field.4.1}}{{/if}}' data-off='{{if $field.4}}{{$field.4.0}}{{/if}}'></span><span class="onoffswitch-switch"></span></label></div> <small class="form-text text-muted">{{$field.3}}</small> </div> +{{* + COMMENTS for this template: + @author hilmar runge, 2020.01 + $field array index: + .0 field name: name=... for input, id=id_... for input, id=label_... for label, id=help_... for small text + .1 label text + .2 checked + .3 form text + .4 on/off value: + .4.0 off + .4.1 on + .5 additional operands for html input statement + .6 label text addition, used for qmc + css classes used: + .clearfix, .form_group, .checkbox + .floatright + .switchlabel, .onoffswitch-switch + .required, .code + .form-control, .form-text, .text-muted +*}} |