﻿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
17413	Serialization or getting non-HTML version of form errors is not easy	Mikhail Korobov	loic84	"See e.g. http://forrst.com/posts/Convert_Django_form_errors_to_JSON-ijw

What do you think about adding errors_dict attribute to BaseForm? A rough draft:

{{{
def _get_errors_dict(self):
    return dict(
        (k, map(unicode, v))
        for (k,v) in self.errors.iteritems()
    )
errors_dict = property(_get_errors_dict)
}}}

"	New feature	closed	Forms	dev	Normal	fixed	form errors serialization		Ready for checkin	1	0	0	0	0	0
