﻿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
5089	Wrong Template in vote() in Part 4 of Tutorial	anonymous	Jacob	"The vote() method in Part 4 references the wrong template here:
{{{
# Redisplay the poll voting form.
        return render_to_response('polls/detail.html', {
            'poll': p,
            'error_message': ""You didn't select a choice."",
        })
}}}

It should be:
{{{
# Redisplay the poll voting form.
        return render_to_response('polls/vote.html', {
            'poll': p,
            'error_message': ""You didn't select a choice."",
        })
}}}"		closed	Documentation	dev		invalid			Unreviewed	1	0	0	0	0	0
