Re: registration and profile must save at a time

2009-04-10 Thread Praveen
Thanks and i tried to do in same fashion as Bennett suggested but getting errror def register_handle_form(request, redirect=None): print "I am in handle form" form_class = utils.get_profile_form() if request.method == 'POST': print "i am in profile post" profileform =

Re: registration and profile must save at a time

2009-04-08 Thread James Bennett
On Thu, Apr 9, 2009 at 12:27 AM, Praveen 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 mo

Re: registration and profile must save at a time

2009-04-08 Thread Praveen
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 o

Re: registration and profile must save at a time

2009-04-08 Thread Malcolm Tredinnick
On Wed, 2009-04-08 at 05:36 -0700, Praveen wrote: [...] > i am very much familiar with django-registration and django-profile > but it really wiered to display extra fields on Registration Form for > that we will have to customize the from django.contrib.auth.forms. I feel you might be over-think