follow the steps below to set up the site title and the site title text of the django admin account:
1.) First, import the admin module into the settings.py file, as shown below:
from django.contrib import admin
2.) At the bottom of the settings.py file, add the following lines:
admin.site.site_header = 'MY_SITE_HEADER' admin.site.site_title = 'MY_SITE_TITLE'
The above method works in the latest version of django ie1.11.3 up to date.
source share