﻿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
33074	Do not require fields on UpdateView/CreateView if form specified	Dan Swain	nobody	"When a form class is specified on CreateView or UpdateView, then even though the fields are specified on the form, the following error occurs:

django.core.exceptions.ImproperlyConfigured: Using ModelFormMixin (base class of MyModelCreateView) without the 'fields' attribute is prohibited.

It seems like fields should not have to be specified on a CreateView or UpdateView when a form is specified since fields HAVE to be specified on a form.  Why can't the view just use the fields specified on the form?  Raising this error when no fields have been specified on the view but a form HAS been specified seems to go against DRY.

"	Cleanup/optimization	closed	Generic views	3.2	Normal	invalid	CreateView UpdateView form ModelFormMixin		Unreviewed	0	0	0	0	0	0
