Opened 5 years ago
Closed 5 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.
Note:
See TracTickets
for help on using tickets.
https://github.com/django/django/pull/13402