views:

187

answers:

1

I have errors raised in the form's clean method (not tied to a field).

How do I display them in the template?

I tried {{ forms.errors }} and {{ form.non_field_errors }} but neither worked.

+1  A: 

According to the docs, they go in a special field (__all__) and should be accessed via the non_field_errors() method. At a guess, I'd say that method returns a sequence.

Hank Gay