﻿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
10366	model for MultipleChoiceField	tangc	nobody	"Ref: db/models/fields/__init__.py

class Field(object) has init with {{{choices=None}}}. It would be good to have a {{{multi_choices=None}}}

def formfield has code {{{ form_class = forms.TypedChoiceField }}}. So It would be like the follows:

{{{
            if self.multi_choices:
                form_class = forms.MultipleChoiceField
            else:
                form_class = forms.TypedChoiceField
}}}

The minimum code change can deal with model to form with MultipleChoiceField. It worked nicely.
"		closed	Database layer (models, ORM)	dev		wontfix	Field choices		Unreviewed	1	0	0	0	0	0
