On Dec 8, 4:23 am, Continuation <selforgani...@gmail.com> wrote: > I want a way to tell if the form submitted contains errors or not. > > There're django snippets that use the field form.errors to test for > errors (like this one:http://www.djangosnippets.org/snippets/1094/) > > And when I looked at my own form.errors, it indeed contains the error > messages. > > However, there's no mention of form.errors at all in the > documentation. Has it been deprecated? Is it safe to use it? > > If not, any alternatives?
No, it hasn't been deprecated at all. It's in the documentation here: http://docs.djangoproject.com/en/dev/ref/forms/api/#using-forms-to-validate-data As that section notes, to check if a form is valid use `is_valid()`, then use `errors` to actually examine the errors. -- DR. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.