Skip to content
thesarfo

Note

The Django Admin Site

Creating a superuser and customizing the admin site's header and index title.

views 0

To first access the admin site, you have to create a super user.

Terminal window
python manage.py createsuperuser

visit the admin page at “/admin/” and login with the credentials you have created.

You can use the below lines to customize the content of your admin page

admin.site.site_header = "StoreFront Admin"
admin.site.index_title = "Admin"