1
0
mirror of https://github.com/django/django.git synced 2025-07-20 01:29:11 +00:00

[1.0.X] Fixed #9618: Corrected an error in some example code in the forms documentation. Thanks matthijs.

r9517 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9518 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2008-11-21 16:26:08 +00:00
parent 33dac7afd7
commit 7f06c373d2

View File

@ -244,7 +244,7 @@ over them::
{% if form.subject.errors %} {% if form.subject.errors %}
<ol> <ol>
{% for error in form.message.errors %} {% for error in form.subject.errors %}
<li><strong>{{ error|escape }}</strong></li> <li><strong>{{ error|escape }}</strong></li>
{% endfor %} {% endfor %}
</ol> </ol>