mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-26 18:38:38 -06:00
Apply the 'required' attribute for mandatory <select> fields
This commit is contained in:
parent
9c180c9f75
commit
91f1b46dc3
@ -1,4 +1,4 @@
|
|||||||
<select name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %} class="form-select {% if 'class' in widget.attrs %} {{ widget.attrs.class }}{% endif %}">{% for group_name, group_choices, group_index in widget.optgroups %}{% if group_name %}
|
<select name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %} class="form-select{% if 'class' in widget.attrs %} {{ widget.attrs.class }}{% endif %}"{% if widget.required %} required{% endif %}>{% for group_name, group_choices, group_index in widget.optgroups %}{% if group_name %}
|
||||||
<optgroup label="{{ group_name }}">{% endif %}{% for option in group_choices %}
|
<optgroup label="{{ group_name }}">{% endif %}{% for option in group_choices %}
|
||||||
{% include option.template_name with widget=option %}{% endfor %}{% if group_name %}
|
{% include option.template_name with widget=option %}{% endfor %}{% if group_name %}
|
||||||
</optgroup>{% endif %}{% endfor %}
|
</optgroup>{% endif %}{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user