diff options
Diffstat (limited to 'templates/w3/layout/checkboxselectmultiple.html')
-rw-r--r-- | templates/w3/layout/checkboxselectmultiple.html | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/w3/layout/checkboxselectmultiple.html b/templates/w3/layout/checkboxselectmultiple.html deleted file mode 100644 index c943fc4..0000000 --- a/templates/w3/layout/checkboxselectmultiple.html +++ /dev/null @@ -1,29 +0,0 @@ -{% load crispy_forms_filters %} -{% load l10n %} - -<div {% if field_class %}class="{{ field_class }}"{% endif %}{% if flat_attrs %} {{ flat_attrs }}{% endif %}> - - {% for group, options, index in field|optgroups %} - {% if group %}<strong>{{ group }}</strong>{% endif %} - {% for option in options %} - <div class="{%if use_custom_control%}custom-control custom-checkbox{% if inline_class %} custom-control-inline{% endif %}{% else %}form-check{% if inline_class %} form-check-inline{% endif %}{% endif %}"> - <input type="checkbox" class="{%if use_custom_control%}custom-control-input{% else %}form-check-input{% endif %}{% if field.errors %} is-invalid{% endif %}" name="{{ field.html_name }}" value="{{ option.value|unlocalize }}" {% include "w3/layout/attrs.html" with widget=option %}> - <label class="{%if use_custom_control%}custom-control-label{% else %}form-check-label{% endif %}" for="{{ option.attrs.id }}"> - {{ option.label|unlocalize }} - </label> - {% if field.errors and forloop.last and not inline_class and forloop.parentloop.last %} - {% include 'w3/layout/field_errors_block.html' %} - {% endif %} - </div> - {% endfor %} - {% endfor %} - {% if field.errors and inline_class %} - <div class="w-100 {%if use_custom_control%}custom-control custom-checkbox{% if inline_class %} custom-control-inline{% endif %}{% else %}form-check{% if inline_class %} form-check-inline{% endif %}{% endif %}"> - {# the following input is only meant to allow boostrap to render the error message as it has to be after an invalid input. As the input has no name, no data will be sent. #} - <input type="checkbox" class="custom-control-input {% if field.errors %}is-invalid{%endif%}"> - {% include 'w3/layout/field_errors_block.html' %} - </div> - {% endif %} - - {% include 'w3/layout/help_text.html' %} -</div> |