[Answered ]-Django process a form that dynamically adds fields, correct approach

2👍

This is exactly what Django’s inlineformset_factory and the django-dynamic-formsert package are made for. The inline formsets would represent the Items and each inline formset would be linked to a parent Receipt. See Inline Formsets for more info.

Leave a comment