2
The problem is that django-registration-redux
reverses some URLs in registration/auth_urls. As no namespace is used, reversing the URL fails.
There are two possible workarounds:
-
instead of including the
urls.py
(and implicitelyauth_urls.py
) fromdjango-registration-redux
, copy them into your project and fix the calls toreverse_lazy
-
fork
django-registration-redux
, fix the issue and submit a pull request
Source:stackexchange.com