﻿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
3295	[patch] newforms: I'd like to have a group functionality in forms	ivan	nobody	"I use my custom group fields in my class forms.

I set an attribute in my form class:

{{{
#!python
 class myform(forms):
     field1 = ...
     field2 = ...
     group_myfields = ['field1','field2']
}}}

{{{field1}}} and {{{field2}}} are fields sets in my custom form class.

I can retrive html output, writing this:

{{{
#!python
myform().myfields.as_p()
myform().myfields.as_table()
}}}

and retrive only fileds listed in {{{group_myfields}}}.

"	enhancement	closed	Forms		normal	wontfix			Design decision needed	1	0	0	0	0	0
