How does one change the \'Django administration\' text in the django admin header?
It doesn\'t seem to be covered in the \"Customizing the admin\" documentation.
The easiest way of doing it make sure you have
from django.contrib import admin
and then just add these at bottom of url.py of you main application
url.py
admin.site.site_title = "Your App Title" admin.site.site_header = "Your App Admin"