Re: error in models

2019-08-05 Thread rahul verma
it should be max_length=200 (not '200') On Mon, Aug 5, 2019 at 9:20 PM Eliseo Rodriguez wrote: > I believe you just need to remove the parentheses because it just needs a > number not a string. > > Die Empty > > On Mon, Aug 5, 2019, 10:24 AM Mudasir Mian > wrote: > >> Dear Team, >> im facing t

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