Opened 17 years ago

Closed 17 years ago

#6015 closed (fixed)

Class in edit_inline objects has quotes escaped

Reported by: Antonis Christofides <anthony@…> Owned by: nobody
Component: contrib.admin Version: dev
Severity: Keywords: auto-escaping
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I have some models with edit_inline=models.TABULAR. In the admin, in the page which is for editing the parent object (and which shows the contained objects inline), in the HTML code there is:

    <th class=&quot;optional&quot;>

where there should be:

    <th class="optional">

Change History (1)

comment:1 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [6720]) Fixed #6015 -- Fixed a CSS escaping issue for admin's edit-inline.

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