Add customization to admin panel
Get some helper package for django-admin to make it pretty
# Change Admin Site Title
admin.site.site_title = ugettext_lazy('PyCon Library Admin')
# Change the <h1> for the Admin
admin.site.site_header = ugettext_lazy('PyCon Library Administration')
# Text to put at the top of the admin index page.
admin.site.index_title = ugettext_lazy('PyCon Library Administration')
Add customization to admin panel
Get some helper package for django-admin to make it pretty