#27761 closed Bug (fixed)
Typo in multiple_input.html produces invalid HTML
Reported by: | Jon Dufresne | Owned by: | nobody |
---|---|---|---|
Component: | Forms | Version: | 1.11 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
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