Improve select all checkbox process on designer and fix a bug
[phpmyadmin.git] / templates / checkbox.twig
blobde23f4b926b263de915a88587013af94ef805164
1 <input type="checkbox" name="{{ html_field_name }}"
2 {%- if html_field_id is defined %} id="{{ html_field_id }}"{% endif -%}
3 {%- if checked is defined and checked %} checked="checked"{% endif -%}
4 {%- if onclick is defined and onclick %} class="autosubmit"{% endif %} /><label
5 {%- if html_field_id is defined %} for="{{ html_field_id }}"
6 {%- endif %}>{{ label }}</label>