Fixes #2971 -- Fixed inor typo in example in authentication documentation. Thanks, heckj@mac.com.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3961 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2006-11-02 14:30:11 +00:00
parent 7f71ae1b8d
commit 7b78fd6f5d
1 changed files with 1 additions and 1 deletions

View File

@ -745,7 +745,7 @@ messages are made available in the `template context`_ as the template variable
{% if messages %}
<ul>
{% for message in messages %}
<li>{{ message.message }}</li>
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}