﻿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
25724	Wrong path in index.html file [django tutorial]	marq	nobody	"polls/templates/polls/index.html

{{{

{% if latest_question_list %}

    <ul>
    {% for question in latest_question_list %}
        <li><a href=""/polls/{{ question.id }}/"">{{ question.question_text }}</a></li>
    {% endfor %}
    </ul>
{% else %}
    <p>No polls are available.</p>
{% endif %}

}}}

Tutorial 3
This line: 
  
{{{
<li><a href=""/polls/{{ question.id }}/"">{{ question.question_text }}</a></li>
}}}

should be replace with:

{{{
  <li><a href=""{{ question.id }}/"">{{ question.question_text }}</a></li>
}}}


It cause a bug(doubled polls in path), which set path
/polls/polls/<question_id>"	Bug	closed	Documentation	1.8	Normal	invalid	index.html		Unreviewed	0	0	0	0	0	0
