I’m having a similar problem that is stated in this question: No module named backends.default.urls
However, I’m trying to use the simple backend, so just doing include('registration.backends.simple.urls') doesn’t quite cut it for me.
Does anyone know how I could make the django-registration work with simple backend?
I figured out the answer:
I installed django-registration via
django-registration==0.7in my requirements.txt fileI instead used the most up-to-date version of django-registration (0.8) by replacing that very line in my requirements with
hg+https://bitbucket.org/ubernostrum/django-registration.Alternatively, you just call
pip install hg+https://bitbucket.org/ubernostrum/django-registration