Opened 8 years ago

Closed 8 years ago

Last modified 8 years ago

#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 Jon Dufresne, 8 years ago

Has patch: set

comment:2 by Mariusz Felisiak, 8 years ago

Triage Stage: UnreviewedAccepted

comment:3 by Tim Graham <timograham@…>, 8 years ago

Resolution: fixed
Status: newclosed

In 88183117:

Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.

comment:4 by Tim Graham <timograham@…>, 8 years ago

In 6969100:

[1.11.x] Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.

Backport of 88183117c28a8d669054e9064e7bd4de19ebcd28 from master

Note: See TracTickets for help on using tickets.
Back to Top