Django Admin Styling Django.How

Author avatar wrote on 26/05/2022

Setting the Admin Area Site’s Name, Title, Header

Add these at bottom of url.py of your main application, make sure that admin is imported


admin.site.site_header= "Lewhdk Admin"
admin.site.site_title= "Lewhdk Admin Area"
admin.site.index_title= "Welcome to Lewhdk admin area"


To extend the admin base file create admin folder in the template folder and create base_site.html

templates/admin/base_site.html

Admin.css