﻿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
14081	Tutorial 3, when 'decoupling',  leaves apparently redundant code	nickd	nobody	"at the end of tutorial 3: http://docs.djangoproject.com/en/dev/intro/tutorial03/#decoupling-the-urlconfs

It talks about 'decoupling' the poll-app from the base site. After moving the URLconf to the app, it leaves in the code:

{{{urlpatterns = patterns('mysite.polls.views'}}}

This still leaves it coupled to the base site installation (and every app you use would need to be tailored to this). Changing this to use just an app-relative reference i.e.

{{{urlpatterns = patterns('polls.views',}}}

appears to work fine, and achieves the decoupling from the base project. Either this is deliberate, and unexplained, or unintentional."		closed	Documentation	1.2		duplicate	Tutorial		Unreviewed	0	0	0	0	0	0
