﻿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
9767	tutorial part 3 - Decoupling the URLconfs - module correction	rduplain	nobody	"In the tutorial part 3, [http://docs.djangoproject.com/en/dev/intro/tutorial03/#decoupling-the-urlconfs Decoupling the URLconfs], urlpatterns should point to polls.views not mysite.polls.views, e.g.

{{{
urlpatterns = patterns('polls.views',
    (r'^$', 'index'),
    (r'^(?P<poll_id>\d+)/$', 'detail'),
    (r'^(?P<poll_id>\d+)/results/$', 'results'),
    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)
}}}

Leaving it at mysite.polls.views would not fully decouple the URLconf."		closed	Uncategorized	1.0		duplicate			Unreviewed	0	0	0	0	0	0
