﻿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
18851	Error in documentation	ctigeek@…	nobody	"https://docs.djangoproject.com/en/1.4/intro/tutorial03/#use-the-template-system

Code example has ""choice.choice"" in FOR loop, it should just be ""choice"".

CURRENT (INCORRECT):
{{{#!python
  <h1>{{ poll.question }}</h1>
<ul>
{% for choice in poll.choice_set.all %}
    <li>{{ choice.choice }}</li>
{% endfor %}
</ul>
  }}}

CORRECT:
{{{#!python
  <h1>{{ poll.question }}</h1>
<ul>
{% for choice in poll.choice_set.all %}
    <li>{{ choice }}</li>
{% endfor %}
</ul>
  }}}"	Uncategorized	closed	Documentation	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
