﻿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
12716	Validation display error in change list.	Kieran Brownlees	nobody	"In the admin change_list.html (http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/templates/admin/change_list.html) line 67:
{{{
67 	        <ul class=""errorlist"">{% for error in cl.formset.non_field_errors %}<li>{{ error }}</li>{% endfor %}</ul>
}}}

The method on a formset is actually 'non_form_errors' (not non_field_errors).
http://code.djangoproject.com/browser/django/trunk/django/forms/formsets.py line 212:
{{{
#!python
212 	    def non_form_errors(self):
213 	        """"""
214 	        Returns an ErrorList of errors that aren't associated with a particular
215 	        form -- i.e., from formset.clean(). Returns an empty ErrorList if there
216 	        are none.
217 	        """"""
}}}"		closed	contrib.admin	dev		fixed	change list		Ready for checkin	1	0	0	0	0	0
