﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
27761	Typo in multiple_input.html produces invalid HTML	Jon Dufresne	nobody	"The [https://github.com/django/django/blob/a15d81a183e2d85969ed46adb975661515330b16/django/forms/templates/django/forms/widgets/multiple_input.html multiple_input.html] template has a typo where a `""` character should appear ''before'' the `{% endif %}` template tag. Currently, this template produces invalid HTML.

Replace:

{{{
<ul{% if id %} id=""{{ id }}_{{ index }}{% endif %}"">
}}}

With:

{{{
<ul{% if id %} id=""{{ id }}_{{ index }}""{% endif %}>
}}}"	Bug	closed	Forms	1.11	Normal	fixed			Accepted	1	0	0	0	0	0
