django-lazysignup is a package designed to allow users to interact with a site as if they were authenticated users, but without signing up. At any time, they can convert their temporary user account to a real user account.
BSD 3-Clause "New" or "Revised" License
410
stars
89
forks
source link
url patterns and string view removed In Django 1.10 #49
/.../lib/python2.7/site-packages/lazysignup/urls.py:9: RemovedInDjango110Warning: Support for string view arguments to url() is deprecated and will be removed in Django 1.10 (got convert). Pass the callable instead.
url(r'^$', 'convert', name='lazysignup_convert'),
/.../lib/python2.7/site-packages/lazysignup/urls.py:12: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead.
name='lazysignup_convert_done'),