﻿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
14142	Improvement (?) on tutorial part 3	AMJ	nobody	"In ""'''Decoupling the URLconfs'''"", where it says

{{{
urlpatterns = patterns('mysite.polls.views',
    (r'^$', 'index'),
    (r'^(?P<poll_id>\d+)/$', 'detail'),
    (r'^(?P<poll_id>\d+)/results/$', 'results'),
    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)
}}}
It should say (IMHO)

{{{
from django.conf.urls.defaults import *  # <--- this line

urlpatterns = patterns('mysite.polls.views',
    (r'^$', 'index'),
    (r'^(?P<poll_id>\d+)/$', 'detail'),
    (r'^(?P<poll_id>\d+)/results/$', 'results'),
    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
)
}}}
That way, it should be clearer that its the whole decoupled file. I've not tested what happens if I let the admin stuff in both url.py files.

My two cents. Thanks you all."		closed	Documentation	1.2		invalid	Tutorial part 3		Unreviewed	0	0	0	0	0	0
