Django comes with an abstraction layer to work with multiple forms on the same page. These groups of forms are known as formsets. Formsets manage multiple instances of a certain Form or ModelForm. All forms are submitted at once and the formset takes care of the initial number of forms to display, limiting the maximum number of forms that can be submitted and validating all the forms.
Formsets include an is_valid() method to validate all forms at once. You can also provide initial data for the forms and specify how many additional empty forms to display.
You can learn more about formsets at https://docs.djangoproject.com/en/2.0/topics/forms/formsets/ and about model formsets at https://docs.djangoproject.com/en/2.0/topics/forms/modelforms/#model-formsets ...