Multi model form

I want to make creation page of recipe with ingredient’s objects. To do this I need to add more than one form for creating product models. How can I solve this problem?

Django’s formsets provide the facility to create a set of forms all for the same model on one page.

1 Like

Thank you very much! I will try it