Changes between Initial Version and Version 1 of Ticket #32125
- Timestamp:
- Oct 20, 2020, 7:23:44 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32125 – Description
initial v1 6 6 {{{ 7 7 {% include "django/forms/widgets/input.html" %} 8 <datalist id="{{ widget.id }}" name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>{% for group_name, group_choices, group_index in widget.optgroups %}{% if group_name %}8 <datalist id="{{ widget.id }}"{% include "django/forms/widgets/attrs.html" %}>{% for group_name, group_choices, group_index in widget.optgroups %}{% if group_name %} 9 9 <optgroup label="{{ group_name }}">{% endif %}{% for option in group_choices %} 10 10 {% include option.template_name with widget=option %}{% endfor %}{% if group_name %}