﻿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
5857	exclude_fields to pair with fields in form_for_model	italomaia <italo.maia@…>	nobody	"I was thinking, if there is the parameter ""fields"" with form_for_model, as a helper, it should existe something like exclude_fields,
because sometimes, one wants to hide from his form but one field. Doesn't seem ""kind"" to make a poor developer to 
write a full set of fields just to ""hide"" a single one. Example:
{{{
class Example(models.Model):
    name = models.CharField(maxlength=20)
    name2 = models.CharField(maxlength=20)
    name3 = models.CharField(maxlength=20)
    show = models.BooleanField(default=True)

ExForm1 = form_for_model(Example, fields=('name1', 'name2', 'name3')) #exists
ExForm2 = form_for_model(Example, exclude_fields=('show')) #should exist
ExForm1 == ExForm2 -> True
}}}

-- Kind is good {{{^__^}}}"		closed	Forms	dev		wontfix	form_for_model enhancement		Design decision needed	0	0	0	0	0	0
