mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-02 13:40:24 +00:00
11 lines
500 B
HTML
11 lines
500 B
HTML
{% for group, entries, index in widget.optgroups %}
|
|
{% for entry in entries %}
|
|
<label tabindex="0" class="choice{% if forloop.parentloop.first %}active{% endif %}">
|
|
<input type="radio" name="{{ entry.name }}" value="{{ entry.value }}"
|
|
{% if forloop.parentloop.first %}checked {% endif %}
|
|
>
|
|
<strong>{{ entry.label }}</strong>
|
|
<span class="info">{{ entry.attrs.description }}</span>
|
|
</label>
|
|
{% endfor %}
|
|
{% endfor %}
|