#27761 closed Bug (fixed)
Typo in multiple_input.html produces invalid HTML
Description ¶
The 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 %}>
Change History (4)
comment:1 by , 8 years ago
Has patch: | set |
---|
comment:2 by , 8 years ago
Triage Stage: | Unreviewed → Accepted |
---|
Note:
See TracTickets
for help on using tickets.
PR