I have 2 objects, both from different Model classes, and want to show a form containing some fields from each one. How can I do this?
|
1
|
|
|
|
|
|
Just create 2 separate forms, the problem with with the approach of the guy above is that you would lose .save(). Forms are really meant to represent 1 single set of data, the data for each of yours models is really a separate set of data. This is why forms doesn't include the tag when the render. |
||
|
|
|
|
The way I do it is by creating two |
||
|
|
|
I've never tried this but you could have two ModelForm classes defined in your code and then make a new plain Something like:
I can't see why it wouldn't work. Just make sure you pass data arguments through to the |
||
|
