﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
12958	Typo in code sample	mitchf	nobody	"URL: http://docs.djangoproject.com/en/dev/intro/tutorial03/#intro-tutorial03 (Section: Write views that actually do something)

Sample code for [template_dir}/polls/index.html shows:
{% if latest_poll_list %}
    <ul>
    {% for poll in latest_poll_list %}
        <li><a href=""/polls/{{ poll.id }}/"">{{ poll.question }}</a><</li>
    {% endfor %}
    </ul>
{% else %}
    <p>No polls are available.</p>
{% endif %}

Should be:
{% if latest_poll_list %}
    <ul>
    {% for poll in latest_poll_list %}
        <li><a href=""/polls/{{ poll.id }}/"">{{ poll.question }}</a></li>
    {% endfor %}
    </ul>
{% else %}
    <p>No polls are available.</p>
{% endif %}

""</li>"" vs. ""<</li>"""		closed	Documentation	1.1		fixed	typo		Ready for checkin	1	0	0	0	0	0
