mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-19 10:31:07 +00:00
15 lines
604 B
HTML
15 lines
604 B
HTML
{% with id=widget.attrs.id %}
|
|
<div {% if id %}id="{{ id }}"{% endif %}
|
|
{% if widget.attrs.class %}class="{{ widget.attrs.class }}"{% endif %}>
|
|
{% for group, options, index in widget.optgroups %}
|
|
{% if group %}
|
|
<div>
|
|
<label>{{ group }}</label>
|
|
{% endif %}
|
|
{% for option in options %}
|
|
<div>{% include option.template_name with widget=option %}</div>
|
|
{% endfor %}
|
|
{% if group %}</div>{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endwith %}
|