mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-14 12:29:35 -06:00
6 lines
406 B
HTML
6 lines
406 B
HTML
<select name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>{% for group_name, group_choices, group_index in widget.optgroups %}{% if group_name %}
|
|
<optgroup label="{{ group_name }}">{% endif %}{% for widget in group_choices %}{% if widget.attrs.selected %}
|
|
{% include widget.template_name %}{% endif %}{% endfor %}{% if group_name %}
|
|
</optgroup>{% endif %}{% endfor %}
|
|
</select>
|