views:

44

answers:

1

I'm using django-regitration in my application Now I want to create different kind of users, with different profile. for example a user is a techer and another user is a student.

How can I modify registration to set the user_type and create the right profile?

A: 

Short hint: You can override the UserAdmin class and then override registration template

stanleyxu2005