12 lines
356 B
HTML
12 lines
356 B
HTML
{% with id=widget.attrs.id %}
|
|
<div{% if id %} id="{{ id }}"{% endif %} class="field">
|
|
<div class="control">
|
|
{% for group, options, index in widget.optgroups %}
|
|
{% for option in options %}
|
|
{% include option.template_name with widget=option %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endwith %}
|