﻿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
8152	"Unable to override the ""blank"" attribute on fields when declaring a ModelForm"	davinstewart	nobody	"When overriding field declarations in a ModelForm, the ""blank"" attribute cannot be overridden.

For example, in the following paraphrased code ...

{{{
class MyModel(models.Model):
    my_field = models.IntegerField(blank=True)

class MyForm(ModelForm):
    my_field = models.IntegerField(blank=False)

}}}

... when the form is validated, my_field should be flagged as being required but it's allowed to be blank.

"		closed	Forms	dev		invalid	ModelForm blank required		Unreviewed	0	0	0	0	0	0
