Login

Getting the global error of a form

Author:
baptiste
Posted:
May 19, 2007
Language:
Python
Version:
.96
Score:
1 (after 1 ratings)

You may want to access to "global" errors in your template, typically when you have a custom clean() method which checks several fields. {{ form.errors }} gives an < ul >, which is often not what you want, and {{ form.errors|join:", " }} iterates in the keys of errors (which are the names of fields, uninteresting). The global errors's key is "all", and Django doesn't allow us to do {{ form.errors.__all__ }}.

This method returns an array, like a classic {{ form.field.errors }}, and can be used with a join : {{ form.get_global_errors|join:", " }}.

1
2
3
4
5
class MyForm(forms.Form):

    def get_global_errors(self):
        errors = dict(self.errors)
        return list(errors.get("__all__", []))

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

justinw (on May 19, 2007):

def get_global_errors(self): return self.errors and self.errors.get('_all_',[])

#

Archatas (on September 12, 2008):

I am not sure about the situation at the time of writing this post, but global errors can be accessed by {{ form.non_field_errors }}

#

Please login first before commenting.