﻿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
18787	Tutorial code incorrect	Foxpaw	nobody	"Running through the tutorial, the document at https://docs.djangoproject.com/en/dev/intro/tutorial03/ towards the bottom presents the following code when explaining how to not hardcode URLs in your templates:

<li><a href=""{% url 'polls.views.detail' poll.id %}"">{{ poll.question }}</a></li>

This code is actually wrong.  The quotes around polls.views.detail are not needed, and in fact cause the template to throw an error.  The proper code should be:

<li><a href=""{% url polls.views.detail poll.id %}"">{{ poll.question }}</a></li>
"	Uncategorized	closed	Documentation	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
