Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Update: If you are using Django 1.7+, see the answer below.
Original answer from 2011:
You need to create your own admin
base_site.htmltemplate to do this. The easiest way is to create the file:This should be a copy of the original
base_site.html, except putting in your custom title:For this to work, you need to have the correct settings for your project, namely in
settings.py:/projectdir/templates/is added intoTEMPLATE_DIRS.django.template.loaders.filesystem.Loaderis added intoTEMPLATE_LOADERS.See docs for more information on
settings.py.