Fixed #12958 -- Fixed typo I introduced in r12527. Thanks, mitchf.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12588 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2010-02-24 22:11:49 +00:00
parent 83e52e3162
commit c736cbe816
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ Put the following code in that template:
{% if latest_poll_list %} {% if latest_poll_list %}
<ul> <ul>
{% for poll in latest_poll_list %} {% for poll in latest_poll_list %}
<li><a href="/polls/{{ poll.id }}/">{{ poll.question }}</a><</li> <li><a href="/polls/{{ poll.id }}/">{{ poll.question }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% else %} {% else %}