RE: User Registration: Looking for tips

2010-07-29 Thread Colleen A Josephson
users Subject: Re: User Registration: Looking for tips Euan, Thank you for the response. I agree with what you're saying and it seems that I have two options before me. 1. Define simple form class for my registration process. Write a save method that posts to both the "User" model

Re: User Registration: Looking for tips

2010-07-29 Thread strayhand
Euan, Thank you for the response. I agree with what you're saying and it seems that I have two options before me. 1. Define simple form class for my registration process. Write a save method that posts to both the "User" model and the "UserProfile" model. I could start this process from scratch

Re: User Registration: Looking for tips

2010-07-29 Thread Wiiboy
Would it be possible to just use two ModelForms? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegr

Re: User Registration: Looking for tips

2010-07-28 Thread euan.godd...@googlemail.com
For the UserProfle model you've provided you won't be able to user the UserCreationForm as there are a load of extra fields. Moreover because User is a foreign key from that model it isn't a straight- forward matter of using a model form. To get a single model form to split the work to two underly

User Registration: Looking for tips

2010-07-28 Thread strayhand
I'm using the auth module for my project and I've got a registration form that's based on the "UserCreationForm" provided by "django.contrib.auth.forms" but it's only showing the username and password fields. I want a registration process that requires users to fill out ALL of the "User" fields pl