{% extends "django/forms/widgets/select.html" %} {% block optgroups %} {% for group_name, group_choices, group_index in widget.optgroups %} {% if group_name %} {% endif %} {% for option in group_choices %} {% include "django/forms/widgets/select_option.html" with widget=option %} {% endfor %} {% if group_name %} {% endif %} {% endfor %} {% endblock %} {% block value %} {% if widget.value %}
{{ widget.value }}
{% endif %} {% endblock %}