I have an app
main/
├── asgi.py
├── celery.py
├── __init__.py
├── settings.py
user/
├── admin.py
├── apps.py
├── __init__.py
├── migrations
│ ├── 0001_initial.py
│ ├── ...
├── models.py
├── tests.py
├── urls.py
└── views.py
In admin.py
the admin page title is set like this:
from django.contrib import admin
admin.site.site_header = settings.HOME_TITLE
Which works on localhost:8000/admin/
.
But http://localhost:8000/accounts/password_reset/
still shows the standard Django Administration title. Is there a way to change that consistently or would I have to create my own template for this?