﻿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
21385	Tutorial part 2 missing steps to enable admin page (uncommenting urls.py)	anonymous	nobody	"https://docs.djangoproject.com/en/dev/intro/tutorial02/

In order to access the admin page following along in the tutorial, you must also uncomment several lines in the urls.py which is not mentioned in part 1 or part 2 of the tutorial


{{{
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
...
    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
)
}}}

"	Uncategorized	closed	Documentation	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
