[Answered ]-Adding namespace in urls causes error that should not even be there

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 implicitely auth_urls.py) from django-registration-redux, copy them into your project and fix the calls to reverse_lazy

  • fork django-registration-redux, fix the issue and submit a pull request

Leave a comment