I have a model Product and a corresponding form Product and I need to update the stock with lets say 5 product, so I input the data for the Product and ask how many items of this product I want to store, because all products to save are the same, except for Django default ID, i was thinking of doing something like this in the view:
for i in range(0, 5):
form.save()
Unfortunately this only saves the last form.
How else can I achieve what I need?