I'm guessing that if you look at the generated source code in the browser,
all of the names for the fields in the pform form's are the same, which
likely collide on the Django side (if the browser actually posts all the
copies with the same field names, not sure what the typical browser
behavior is), which means the last set of form fields will overwrite the
values of the previous form fields with the same names.

Either way, this is a case where Django formsets should be used, that way
your form fields don't end up with the same name and Django knows how to
intelligently handle the multiple submissions.

https://docs.djangoproject.com/en/1.7/topics/forms/formsets/

-James

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2Be%2BciXnZOtq8m6ue7Np33g36MLrEUn92nn3uddBRHMrmad9zg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to