﻿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
11140	modelForm fields Meta, if only one specified results empty form	davidarakelian	nobody	"
I have the following Modelform.

{{{
class EditPicture(forms.ModelForm):
    class Meta:
        model = Photo
        fields = ('title','description')
}}}


If I change fields to ('title')

{{{
class EditPicture(forms.ModelForm):
    class Meta:
        model = Photo
        fields = ('title')
}}}

This produces an empty form. Whenever I try to built a form(from a model) with only 1 field it shows up an empty form.
"		closed	Forms	dev		invalid	forms, modelForm, fields, meta, empty form		Unreviewed	0	0	0	0	0	0
