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 10081 In tutorial 3, url decoupling is incomplete krusty.ar@… nobody "in tutorial 3, the last mention of polls/urls.py still references the site in wich it's installed, missing the point on decoupling: {{{ urlpatterns = patterns('mysite.polls.views', (r'^$', 'index'), (r'^(?P\d+)/$', 'detail'), (r'^(?P\d+)/results/$', 'results'), (r'^(?P\d+)/vote/$', 'vote'), ) }}} Should be: {{{ urlpatterns = patterns('polls.views', (r'^$', 'index'), (r'^(?P\d+)/$', 'detail'), (r'^(?P\d+)/results/$', 'results'), (r'^(?P\d+)/vote/$', 'vote'), ) }}} I'm a complete newbie but that makes more sense to me (and it works)." closed Documentation 1.0 duplicate tutorial 3 urls routes Unreviewed 0 0 0 0 0 0