Sudo Su
Sudo Su

Reputation: 51

Changing the Django admin site

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?

Upvotes: 1

Views: 1630

Answers (1)

Tanveer
Tanveer

Reputation: 1235

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

  1. First change the header

    Second will channge the title

    Third will change the index tilte

Upvotes: 6

Related Questions