7 lines
489 B
HTML
7 lines
489 B
HTML
{% comment %}
|
|
Include a hidden field of the same name to ensure that unchecked checkboxes
|
|
are always included in the submitted form data.
|
|
{% endcomment %}
|
|
<input type="hidden" name="{{ widget.name }}" value="">
|
|
<input type="checkbox" name="{{ widget.name }}"{% if widget.value != None %} value="{{ widget.value|stringformat:'s' }}"{% endif %} {% include "django/forms/widgets/attrs.html" %} class="form-check-input{% if 'class' in widget.attrs %} {{ widget.attrs.class }}{% endif %}">
|