Opened 4 years ago

Closed 4 years ago

#31992 closed Bug (fixed)

Admin password_* templates are missing <title> suffix

Reported by: Jon Dufresne Owned by: nobody
Component: contrib.admin Version: dev
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 Django admin adds the suffix to the <title> element: "| Django site admin".

This appears on all pages except those rendered using the password_* HTML templates. It is missing because these templates override the title without re-adding the suffix. The override is the same as the base template (minus the suffix) so a simple fix is to drop the override and inherit the <title> from the base template.

Change History (3)

comment:2 by Carlton Gibson, 4 years ago

Triage Stage: UnreviewedAccepted

Seems good. Thanks.

comment:3 by GitHub <noreply@…>, 4 years ago

Resolution: fixed
Status: newclosed

In 53c0d16:

Fixed #31992 -- Made admin password reset templates use title/content_title blocks from the base template.

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