﻿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
21315	Possible Error in Tutorial pt. 3	andy@…	nobody	"Hello, I just lost about 30 minutes chasing down an error while walking through the tutorial. It's on the very last part of pt. 3 involving namespacing. (See pt 3 here: https://docs.djangoproject.com/en/1.5/intro/tutorial03/)

It says to change the line to this:

<li><a href=""{% url 'polls:detail' poll.id %}"">{{ poll.question }}</a></li>

However, I was getting an error message: u""'polls"" is not a registered namespace

After some googling, it looks like others are having the same trouble, and I was able to fix it by instead changing the line in question to this:

<li><a href=""{% url polls:detail poll.id %}"">{{ poll.question }}</a></li>

I'm only a beginner and am not familiar enough to have any clue why this makes a difference.

If there's any other information I can provide, feel free to let me know.

Thanks
Andy"	Bug	closed	Documentation	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
