select_api.html 406 B

12345
  1. <select name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>{% for group_name, group_choices, group_index in widget.optgroups %}{% if group_name %}
  2. <optgroup label="{{ group_name }}">{% endif %}{% for widget in group_choices %}{% if widget.attrs.selected %}
  3. {% include widget.template_name %}{% endif %}{% endfor %}{% if group_name %}
  4. </optgroup>{% endif %}{% endfor %}
  5. </select>