I want to override the templates of an external app (allauth, installed in site packages). Unfortunately no advice i read worked.
I added the following to my settings.py
:
PROJECT_ROOT = os.path.normpath(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIRS = (os.path.join(PROJECT_ROOT, 'templates', 'allauth'))
and copied all templates (this content) to my_project_dir/templates/allauth
. But when I restart the server and reload the page I only get the rendered templates from the original allauth app in site packages, not mine custom templates. Any hints?