Re: Two sets of registration with django-registration

2013-10-02 Thread Vibhu Rishi
hi I have updated and using All Auth now. I also liked it that i can do the social logins and the linkedin login seems to be working so far :) Can you point me to documentation on how to ovveride the methods ? I dont know so much about this part of django and am a bit at a loss in my

Re: Two sets of registration with django-registration

2013-09-23 Thread Vibhu Rishi
Thanks for the pointer. Will check out all auth. V. On Tue, Sep 24, 2013 at 4:03 AM, Kamil Gałuszka wrote: > > Of course. > > First of all I would recommend you using of django-allauth. They are > having great docs and they support custom user model. django-registration >

Re: Two sets of registration with django-registration

2013-09-23 Thread Kamil Gałuszka
Of course. First of all I would recommend you using of django-allauth. They are having great docs and they support custom user model. django-registration is little less maintained and maybe less suitable for your needs. First you define your custom form in settings.py: SIGNUP_FORM_CLASS Then

Two sets of registration with django-registration

2013-09-23 Thread Vibhu Rishi
Hi, I have 2 types of users with different views of the same page . Using django-registration, I have been able to setup all the signup/password change etc for one level of users - say students. Now I want to have another set of registrations for Teachers. Is there a way to achieve that ? Vibhu