How to override template in django-allauth?

I eventually resorted to loading my app before django-allauth. In settings.py:

INSTALLED_APPS = (
    ...
    'myapp',
    'allauth',
    'allauth.account'
)

This solution goes against what’s presented in example app, but I was not able to solve it in other way.

Leave a Comment