On Thu, Apr 9, 2009 at 12:27 AM, Praveen <praveen.python.pl...@gmail.com> wrote:
> Thank you so much Malcolm but to display extra fields on sign up we
> will have to customize the django.contric.auth.forms then that form is
> generated from the user models i am so much confused whether i will
> have to add extra field in user model class or not but i do not want
> change the structure of auth_user table. ok in a single line i want
> django-registration and django-profile to be mingle in one form. could
> you please suggest me link or idea.

So you need to provide:

1. A form class which has all the fields you care about, and
2. A 'save()' method on instances of that form class which will create
save the objects you want to have saved.

The first step is easy; you just set out writing a form like any other.

The second step is similarly easy; since you're the one writing the
form class, you know what fields the form has, and you know which
correspond to the user and which correspond to the profile. So read
the appropriate data from the form's cleaned_data for the user, create
and save a User object, then read the appropriate data from
cleaned_data for the profile, create and save a profile object. And
then you're done.

So I guess I'm a bit confused as to what's so hard here; this is
really quite basic everyday Python programming, not any kind of deep
magic.


-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to