You have the problem here in that every instance in your set is going to have the same name
attribute for the values being submitted.
If you’re creating a form for multiple instances of the same type of objects, you want to look at Django’s formsets.
What you don’t want to do in Django is manually render input fields individually as html elements.