﻿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
10162	Tutorial part 2 has wrong instructions for enabling admin	Andy Dustman	nobody	"http://docs.djangoproject.com/en/dev/intro/tutorial02/#activate-the-admin-site has this snippet:

{{{
#!python
    # Uncomment the next line to enable the admin:
    (r'^admin/', include(admin.site.urls)),
}}}

After creating a new project and inspecting the new default urls.py, I find it should be:

{{{
#!python
    # Uncomment the next line to enable the admin:
    (r'^admin/', include(admin.site.root)),
}}}

i.e. change ''urls'' to ''root''.

New users doing what the tutorial tells them probably would never see this; if they uncomment the line as it tells them, it just works. I found this converting an old 0.96 project to 1.02 and going through the tutorial as a refresher."		closed	Documentation	1.0		duplicate			Unreviewed	0	0	0	0	0	0
