﻿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
12513	UnresolvableValidationError far too greedy	Skylar Saveland	nobody	"This should be an okay modelform:

{{{
from django.contrib.auth.models import User

class FailForm(forms.ModelForm):

    class Meta:
        model = User
        fields = ('username',)
}}}

I want to see:

{{{
>>> f = FailForm({})
>>> f.is_valid()
False
}}}

Instead, expecting False, I get:

UnresolvableValidationError: {'password': [u'This field cannot be blank.']}

line ~270 django.forms.models"		closed	Forms	dev		duplicate			Design decision needed	0	0	0	0	0	0
