Opened 3 years ago

Closed 3 years ago

#32192 closed Cleanup/optimization (wontfix)

Replacing the quotation marks with apostrophe marks in admin/base.html

Reported by: Sihwan Lee Owned by: Sihwan Lee
Component: Template system Version: 3.1
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

In the django/django/contrib/admin/templates/admin/base.html, the quotation marks interfere with some of the html quotation marks, such as:

<link rel="stylesheet" type="text/css" href="{% static "admin/css/responsive.css" %}">

the quotation marks inside the "{% static "admin/css/responsive.css" %}" interfere with the quotation marks outside. Needs a bit of cleaning up in the html format.

Change History (1)

comment:1 by Mariusz Felisiak, 3 years ago

Resolution: wontfix
Status: assignedclosed

Both versions work fine, so I wouldn't change them in builtin templates. We try to avoid bulk updates in code unless it's a big problem.

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