Manu,
This is the directory structure I have. I have pretty much tried it in all levels of the hierarchy with no success. In the tutorial for Django v1.5, it had you name a specific location in the filesystem where the base_site.html was located. In the new 1.6.1 tutorial, there is no mention of location and it seems to imply that Django will search the directory hierarchy to find the file in question.
Open your settings file (mysite/settings.py, remember) and add a TEMPLATE_DIRS setting:
TEMPLATE_DIRS = [os.path.join(BASE_DIR, ’templates’)]
TEMPLATE_DIRS is an iterable of filesystem directories to check when loading Django templates; it’s a search path.
Anyway, here's my directory structure...many thanks for your help.
mysite
db.sqllite3
manage.py
mysite (directory)
__init__.py
db.sqlite3
settings.py
urls.py
wsgi.py
polls (directory)
__init__.py
admin.py
models.py
tests.py
views.py
templates (directory)
admin (directory)
base_site.html // This is the file in question not being read to alter the admin
// header names.