[Django]-Inlineformset_factory widget aka field style

4👍

Figured it out…

The solution is to add form=MyChildModelForm to the inlineformset_factory…

inlineformset_factory(Parent, Child, form=MyChildModelForm)

And the you define the widget under Meta of the MyChildModelForm as you usually would…

Leave a comment