diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2017-01-23 04:44:57 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-01-23 07:44:57 -0500 |
| commit | 88183117c28a8d669054e9064e7bd4de19ebcd28 (patch) | |
| tree | 1b8766b08b395c35514b13b41a0411deff81bfb8 /django/forms/templates | |
| parent | ecd5944666558bbb3a12b0aa0058685a81ce7162 (diff) | |
Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.
Diffstat (limited to 'django/forms/templates')
| -rw-r--r-- | django/forms/templates/django/forms/widgets/multiple_input.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/templates/django/forms/widgets/multiple_input.html b/django/forms/templates/django/forms/widgets/multiple_input.html index 60282ff887..2362aff4e6 100644 --- a/django/forms/templates/django/forms/widgets/multiple_input.html +++ b/django/forms/templates/django/forms/widgets/multiple_input.html @@ -1,5 +1,5 @@ {% with id=widget.attrs.id %}<ul{% if id %} id="{{ id }}"{% endif %}>{% for group, options, index in widget.optgroups %}{% if group %} - <li>{{ group }}<ul{% if id %} id="{{ id }}_{{ index }}{% endif %}">{% endif %}{% for option in options %} + <li>{{ group }}<ul{% if id %} id="{{ id }}_{{ index }}"{% endif %}>{% endif %}{% for option in options %} <li>{% include option.template_name with widget=option %}</li>{% endfor %}{% if group %} </ul></li>{% endif %}{% endfor %} </ul>{% endwith %} |
