Re: formset consisting of multiple models/forms

2009-08-03 Thread Malcolm Tredinnick
On Mon, 2009-08-03 at 20:29 -0700, sico wrote: > Hi, > > Just to clarify here, I really want to keep using forms.ModelForm to > avoid having to redefine any data types and labels. I could create a > single form that has all the fields I want and use that in a formset. > But then I have to duplic

Re: formset consisting of multiple models/forms

2009-08-03 Thread sico
Hi, Just to clarify here, I really want to keep using forms.ModelForm to avoid having to redefine any data types and labels. I could create a single form that has all the fields I want and use that in a formset. But then I have to duplicate the field/model definitions and also handle the binding

formset consisting of multiple models/forms

2009-08-03 Thread sico
Hi, I have several models linked OneToOne by their primary keys. I can make a single view that has a form for each model and allow the user to edit data from the each of the models in a single screen (as if it were all stored in a single table/model) I'd like to be able to do this in a grid, wi