﻿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
18560	polls/detail.html Demo Code in Django 1.4 Tutorial is Incorrect?	Benjamin E White	nobody	"If I'm not mistaken, the [https://docs.djangoproject.com/en/1.4/intro/tutorial03/#use-the-template-system demo code for polls/detail.html] is incorrect.

This:

{{{
#!div style=""font-size: 80%""
  {{{#!python
  <h1>{{ poll.question }}</h1>
  <ul>
  {% for choice in poll.choice_set.all %}
    <li>{{ choice.choice }}</li>
  {% endfor %}
  </ul>
  }}}
}}}

When I view this at http://127.0.0.1:8000/polls/1/, it gives me the appropriate header, but the bullets are blank (i can see the bullets but no text).

My bulleted lists appear as expected after making this modification, which is in line with the model described [https://docs.djangoproject.com/en/dev/intro/tutorial01/#creating-models here] in the first part of the tutorial: 

{{{
#!div style=""font-size: 80%""
  {{{#!python
    <li>{{ choice.choice_text }}</li>
  }}}
}}}
"	Bug	closed	Documentation	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
