You can do it in the same save. After you have the user object
created, use it to create a UserProfile object:

new_profile = UserProfile.objects.create(...., user_fk=new_user,...)

If you don't own the form (it comes from some package you don't want
to change) then you can always inherit it and add the additional
functionality you need there.

Hope that helps.
Yaniv


On Mar 17, 7:12 am, tdelam <tde...@gmail.com> wrote:
> Hi,
>
> I am using the User model and trying to store additional information
> about the person registering. I have a model called UserProfile with a
> few additional fields and a FK to the User model. I now have a
> forms.py for my forms which consists of:
>
> http://dpaste.com/hold/15470/
>
> My question is how do I store the additional information on save() do
> I need to move this save() method out of forms.py? or can I still do
> it in here and also store the extra information in the UserProfile
> table?
--~--~---------~--~----~------------~-------~--~----~
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