summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Meers <simon@simonmeers.com>2010-10-08 23:32:46 +0000
committerSimon Meers <simon@simonmeers.com>2010-10-08 23:32:46 +0000
commit0f9eb912ffa015574ebb2d1fd6a2a78664a19039 (patch)
tree97ca09cdc6ccbff787fa14d19428451b26369927 /docs
parent37023bc0bc55af53e356b5dfb87808787b723edb (diff)
Fixed #14023 -- include non_field_errors in example. Thanks to konryd for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14041 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/index.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index cef322a02f..f845586ab4 100644
--- a/docs/topics/forms/index.txt
+++ b/docs/topics/forms/index.txt
@@ -210,6 +210,7 @@ the way a form is presented using the Django template language. Extending the
above example::
<form action="/contact/" method="post">
+ {{ form.non_field_errors }}
<div class="fieldWrapper">
{{ form.subject.errors }}
<label for="id_subject">E-mail subject:</label>