Changes between Initial Version and Version 1 of Ticket #32125


Ignore:
Timestamp:
Oct 20, 2020, 7:23:44 AM (4 years ago)
Author:
Volodymyr
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32125 – Description

    initial v1  
    66{{{
    77{% 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 %}
    99  <optgroup label="{{ group_name }}">{% endif %}{% for option in group_choices %}
    1010  {% include option.template_name with widget=option %}{% endfor %}{% if group_name %}
Back to Top