comfy/wagtail_store/dynamic_forms/templates/widgets/checkbox_multiple.html

15 wiersze
513 B
HTML

{% for group, options, index in widget.optgroups %}
{% if group %}
<label>{{ group }}</label>
{% endif %}
{% for option in options %}
<div class="form-check">
<input class="form-check-input" type="checkbox" value="{{ option.value }}" id="{{ option.attrs.id }}"
name="{{ option.name }}">
<label class="form-check-label" for="{{ option.attrs.id }}">
{{ option.value }}
</label>
</div>
{% endfor %}
{% endfor %}