﻿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
18693	Minor bug in tutorial part 3	mpwoodward	nobody	"Brand new to Django and I'm going through your excellent tutorial, and unless I missed a step there is a small bug in the code in part 3 of the tutorial here:
https://docs.djangoproject.com/en/1.4/intro/tutorial03/

Specifically, this chunk under the heading ""Use the template system"":
{{{
<h1>{{ poll.question }}</h1>
<ul>
{% for choice in poll.choice_set.all %}
    <li>{{ choice.choice }}</li>
{% endfor %}
</ul>
}}}
Unless I'm mistaken in the loop it should be choice.choice_text instead of choice.choice. When I changed it to choice.choice_text the choice text appeared in the output."	Uncategorized	closed	Documentation	1.4	Normal	invalid			Accepted	0	0	0	0	1	0
