I wanted to change the "Django administration" text on the default Django admin site. But the docs do not make it that, clear. Is there a way that I can do it once i have collected all the static files?
            Asked
            
        
        
            Active
            
        
            Viewed 579 times
        
    1 Answers
2
            admin.site.site_header = "your Admin name "
admin.site.site_title = "Your Admin Portal"
admin.site.index_title = "Welcome to YOur Researcher Portal"
In The admins.py file
- First change the header - Second will channge the title - Third will change the index tilte 
 
    
    
        Tanveer Ahmad
        
- 706
- 4
- 12
