summaryrefslogtreecommitdiffstats
path: root/templates/w3/layout/radioselect.html
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-09-05 12:03:42 +0100
committerGitHub <noreply@github.com>2024-09-05 12:03:42 +0100
commitacf9ad680f7c4c8a1283b21ab4cc3df112955530 (patch)
tree0ee570cc70236717928df26bdea7b231c4de8f26 /templates/w3/layout/radioselect.html
parent4187f41b48814b3c13ac75a6a9f57dd4efcaaa4c (diff)
parent707128730185f67d24ccfed2a9c7056129478fec (diff)
Merge pull request #102 from defencedigital/postgres-migration
Postgres migration
Diffstat (limited to 'templates/w3/layout/radioselect.html')
-rw-r--r--templates/w3/layout/radioselect.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/w3/layout/radioselect.html b/templates/w3/layout/radioselect.html
deleted file mode 100644
index d9c9e5a..0000000
--- a/templates/w3/layout/radioselect.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-radio{% if inline_class %} custom-control-inline{% endif %}{% else %}form-check{% if inline_class %} form-check-inline{% endif %}{% endif %}">
- <input type="radio" 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-radio{% 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>