{% from "components/select-input.html" import select_nested, select %} {% macro checkbox( field, hint=False, width='2-3' ) %}
{{ checkbox_input(field.id, field.name, field.data) }}
{% endmacro %} {% macro checkboxes_nested(field, child_map, hint=None, disable=[], option_hints={}, hide_legend=False) %} {{ select_nested(field, child_map, hint, disable, option_hints, hide_legend, input="checkbox") }} {% endmacro %} {% macro checkboxes(field, hint=None, disable=[], option_hints={}, hide_legend=False) %} {{ select(field, hint, disable, option_hints, hide_legend, input="checkbox") }} {% endmacro %} {% macro checkbox_input(id, name, data=None, value="y") %} {% endmacro %} {% macro unlabelled_checkbox(id, name, data=None, value="y") %}
{{ checkbox_input(id, name, data, value) }}
{% endmacro %}