1๐
โ
If you put your templates in projectfolder/accountsapp/templates/
, then the app directories loader will find them, as long as you have 'APP_DIRS': True
in your template settings.
However, if you move the templates into the projectfolder/accountsapp/templates/allauth
subfolder, then the app directories loader will not find them, so you will have to add the directory to DIRS
as you have already done.
๐คAlasdair
Source:stackexchange.com