Re: Many Models, One Form with newforms?

2009-04-08 Thread robstar
Thanks a lot ! That worked great. I can't believe how easy it is to slam everything back into the db using the instance and prefix. Django ftw!! rob > > Just use them all side-by-side in your views and templates,   > potentially using prefixes >

Re: Many Models, One Form with newforms?

2009-04-08 Thread Masklinn
On 8 Apr 2009, at 20:51 , robstar wrote: > Hey guys, > > I'm working on a recipe engine and need to consolidate all the related > models for one Recipe on one page for editing purposes... Suppose I > have: > > model Recipe > fk <-model Recipe Parts > fk

Many Models, One Form with newforms?

2009-04-08 Thread robstar
Hey guys, I'm working on a recipe engine and need to consolidate all the related models for one Recipe on one page for editing purposes... Suppose I have: model Recipe fk <-model Recipe Parts fk <- model Ingredients