[Django]-Inline in ModelForm

18👍

✅

Inline formsets is what you need:

Inline formsets is a small abstraction layer on top of model formsets.
These simplify the case of working with related objects via a foreign
key.

See examples here:

Hope that helps.

Leave a comment