mirror of https://github.com/snachodog/mybuddy.git
14 lines
471 B
HTML
14 lines
471 B
HTML
{% with id=widget.attrs.id %}
|
|
<div {% if id %}id="{{ id }}"{% endif %}
|
|
class="btn-group btn-group-toggle"
|
|
data-bs-toggle="buttons">
|
|
{% for group, options, index in widget.optgroups %}
|
|
{% for option in options %}
|
|
{% if option.value != '' %}
|
|
{% include option.template_name with widget=option %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endwith %}
|