﻿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
19927	Tutorial Part 3 - choice.choice_text is choice.choice	juril	nobody	"This applies both to Tutorial Part 3 and 4.

Choice class contains a ""choice"" field that we want to use when creating a template for its view.

{{{
<h1>{{ poll.question }}</h1>
<ul>
{% for choice in poll.choice_set.all %}
    <li>{{ choice.choice_text }}</li>
{% endfor %}
</ul>
}}}

should be changed as

{{{
<h1>{{ poll.question }}</h1>
<ul>
{% for choice in poll.choice_set.all %}
    <li>{{ choice.choice }}</li>
{% endfor %}
</ul>
}}}

for the text associated to a choice to be correctly displayed."	Bug	closed	Documentation	1.5-rc-1	Normal	invalid			Unreviewed	0	0	0	0	0	0
