Django template Path
- by user74283
Hi I m following the tutorial on http://docs.djangoproject.com/en/dev/intro/tutorial02/#intro-tutorial02 in windows 7 envoirement. my settings file is
TEMPLATE_DIRS = (
'C:/django-project/myapp/mytemplates/admin'
)
i got the base_template from the template admin/base_site.html from within the default Django admin template directory in the source code of Django itself (django/contrib/admin/templates) into an admin subdirectory of myapp directory as the tutorial instructed.
It doesn't seem to take affect for some reason. Any clue of what might be the problem? Do i have to do a sync db ?