1886323d74
Boot custom CSS, and put some base, standard css in its place. Shame I did not start with fresh Bootstrap4, but oh well. Some more templates could be made to make this less messy, which would be good.
5 lines
405 B
HTML
5 lines
405 B
HTML
<select class="form-control" 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 option in group_choices %}
|
|
{% include option.template_name with widget=option %}{% endfor %}{% if group_name %}
|
|
</optgroup>{% endif %}{% endfor %}
|
|
</select>
|