﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
18573	formfield_callback attribute on ModelForm not being passed to modelform_factory	django@…	nobody	"Solitary !ModelForm instances are run though !ModelForm.formfield_callback() when they are instantiated. It would be nice if !ModelForm instances generated from modelform_factory also did this without having to specify formfield_callback again when calling modelform_factory.

In effect:
{{{
#!python
    modelform_factory(
        model=AModel,
        form=AModelForm,
        formfield_callback=AModelForm.formfield_callback if hasattr(AModelForm, 'formfield_callback') else None
        )
}}}

I am not entirely sure of the terminology. I'm happy to explain further if need be."	New feature	closed	Forms	1.3	Normal	needsinfo			Accepted	0	0	0	0	0	0
