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:
parent
83e52e3162
commit
c736cbe816
|
@ -261,7 +261,7 @@ Put the following code in that template:
|
|||
{% if latest_poll_list %}
|
||||
<ul>
|
||||
{% 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 %}
|
||||
</ul>
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in New Issue