My setting for TEMPLATE_DIRS
is
PATH_PROJECT = os.path.abspath(os.path.dirname(__file__))
TEMPLATE_DIRS = (
os.path.join(PATH_PROJECT, 'mytemplates/'),
)
but the base_site.html
opens from the default position only.
I tried to debug with PDB. but while trying to put break point in django/conf/__init__.py
, pdb gives the message End Of File.
My base_site.html resides in correct folder.