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.
admin.py:
from django.contrib.admin import AdminSite AdminSite.site_title = ugettext_lazy('My Admin') AdminSite.site_header = ugettext_lazy('My Administration') AdminSite.index_title = ugettext_lazy('DATA BASE ADMINISTRATION')