Monday, September 23, 2013

Re: Two sets of registration with django-registration


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 you are inherit this class https://github.com/pennersr/django-allauth/blob/master/allauth/account/adapter.py and override method save_user to actually do what you want. 

And that is it. Is just that simple

Cheers
Kamil 



On Monday, September 23, 2013 7:32:38 PM UTC+2, Vibhu Rishi wrote:
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

--
Simplicity is the ultimate sophistication. - Leonardo da Vinci
Life is really simple, but we insist on making it complicated. - Confucius

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment