Re: Need some ideas for how to implement a two-part form

2011-01-26 Thread Shawn Milochik
Try using formsets or model formsets. http://docs.djangoproject.com/en/dev/topics/forms/formsets/ As for remembering some information about the form without displaying it, in your case it sounds like the guest form could have a foreign key to the party they're attending. You could exclude that

Need some ideas for how to implement a two-part form

2011-01-26 Thread j_syk
I'm working on a project that requires a RSVP form for an event. The first step of the form would ask first & last name, e-mail, attending (yes/no/unsure), and total number of guests attending. Currently I have this form correctly working and submitting to the database. The second step of the