﻿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
18705	Tutorial - URL Template Tag Error	max@…	nobody	"I'm working through the tutorial, and on the following page:

  https://docs.djangoproject.com/en/dev/intro/tutorial03/

there is an error in the code in the final paragraph.  We are instructed to use the following line to make use of the URL template helper:

   <li><a href=""{% url 'polls.views.detail' poll.id %}"">{{ poll.question }}</a></li>

However, the single quotes around 'polls.views.detail' result in a 'No Reverse Match' error.  I found that removing the single quotes, giving:

   <li><a href=""{% url polls.views.detail poll.id %}"">{{ poll.question }}</a></li>

worked without producing the error."	Uncategorized	closed	Documentation	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
