[Fixed]-Move customized django-allauth templates to directory other than 'account'

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

Leave a comment