mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
13 lines
534 B
HTML
13 lines
534 B
HTML
<div class="row">
|
|
<label for="{{ formitem.id_for_label }}"
|
|
class="col-8 control-label">{{ formitem.help_text|safe }}</label>
|
|
<div class="col-4 pb-3" id="{{ formitem.id_for_label|slice:'-2' }}">
|
|
{% 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>
|
|
</div>
|