On 7/24/07, Chris Hoeppner <[EMAIL PROTECTED]> wrote:

> Well... Actually, what I need is the same as form_for_instance, but for
> more than a single model.

Why not use multiple forms? There is nothing stopping you from putting
multiple forms into a context, and populating multiple forms from a
single POST dictionary. The only things to keep in mind are:

 - remember to check validity for both forms (form1.is_valid() and
form2.is_valid())

 - When you instantiate your form, pass in prefix='form1' as an
argument - all the fields on the form will get that prefix, which will
keep the two forms distinct in the POST dictionary. This will only be
an issue if there is an overlap in the field names on the two forms,
but it's better to be safe.

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to