Re: Installing and using django registration – backends

2019-01-09 Thread Yuval Bachrach
my latest response failed to make it - SO I am trying again (converted some text to jpg - the contect of dirs() and "ls" in shell) The package is installed (pip) and migration is clean. Next steps at the documents: Adding to urls at urlpatterns but I get error messages (details below). So I am sta

Re: Installing and using django registration – backends

2019-01-04 Thread Yuval Bachrach
Adding more information: - __init__.py of django_registration is an empty file: Question: Should it be? - *At python shell, when doing dir() to django_registration, backends, as well as anything else, is missing*. At the file system, relevant files and directory exsists In [1]: im

Re: Installing and using django registration – backends

2019-01-03 Thread Yuval Bachrach
For the suggested link I get the following error message: "ModuleNotFoundError: No module named 'registration'" I think registration is the old name used at version 2.3. Instead of following the pdf I follow https://django-registration.readthedocs.io/en/3.0/ (pdf is for an older version 2.3) speci

Re: Installing and using django registration – backends

2019-01-03 Thread Rahul Verma
Can you try like ths urlpatterns = [ # Other URL patterns ... url(r'^accounts/', include('registration.backends.activation.urls')), # More URL patterns ... ] By the way, this is the documentation of Django Registration ,Hopefully it may help you. https://media.readthedocs.org/pdf/django-registr