mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-19 22:42:17 +00:00
As this requires them to be True, whereas we just need to require that an option be entered.
11 lines
428 B
HTML
11 lines
428 B
HTML
<label for="{{ formitem.id_for_label }}"
|
|
class="col-sm-8 control-label">{{ formitem.help_text|safe }}</label>
|
|
<div class="col-4 pb-3">
|
|
{% for radio in formitem %}
|
|
<div class="custom-control custom-radio">
|
|
{{ radio.tag }}
|
|
<label class="custom-control-label" for="{{ radio.id_for_label }}">{{ radio.choice_label }}</label>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|