Re: uncommon newforms usage

2007-11-01 Thread Doug B
You might consider a single view and form class, and then doing your split up in the template using form.field to print the fields you want for that 'page' by passing the page in with the context. Leave the form processing to a single form and view. Rather than worry with pages I'd probably just

uncommon newforms usage

2007-11-01 Thread Milan Andric
Hi, I'm working on an a little newforms problem and can surely use some advice. I have an application process that is broken up into several forms. So I have one Application model class and several AppFormParts 1-8. Since the application process is so painfully long we decided to break it up int