I'm not sure if this is the right answer, but a quick hack to make this work is to simply re-assign empty_form with the form you want after initializing the form set.
formset = formset_factory(MyClass, **kwargs) empty = formset.empty_form
Note that this overwrites the empty_form property of the resulting set of forms.
Jkk.jonah
source share