﻿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
11732	ModelAdmin.get_changelist_form should use ModelAdmin.form	Eduardo de Oliveira Padoan	nobody	"When you create a !ModelForm to associate with a !ModelAdmin, using the 'form' option, this form will not be used on the list_editable form. When I define a {{{.clean()}}} method, I'd like the validation to work both on the changeform and on the changelist.

A quick fix:
{{{
     def get_changelist_form(self, request, **kwargs):
         defaults = {
+            ""form"": self.form,
            ""formfield_callback"": curry(self.formfield_for_dbfield,
                                              request=request),
         }
         defaults.update(kwargs)
         return modelform_factory(self.model, **defaults)
}}}"	New feature	closed	contrib.admin	1.1	Normal	wontfix		andy@…	Design decision needed	0	0	0	0	0	0
