[Answered ]-Django: Contribute to third party app django-lazysignup

2👍

As, per the official documentation, try to install the django-lazysignup using pip

   pip install django-lazysignup

Once that’s done, you need to add lazysignup to your INSTALLED_APPS. You will also need to add lazysignup‘s authentication backend to your site’s AUTHENTICATION_BACKENDS setting:

AUTHENTICATION_BACKENDS = (
  'django.contrib.auth.backends.ModelBackend',
'lazysignup.backends.LazySignupBackend',
)

Finally, you need to add lazysignup to your URLConf, using something like this:

urlpatterns += (
    url(r'^convert/', include('lazysignup.urls')),
)

Here, is an official documentation to follow Official doc

Leave a comment