Opened 16 years ago
Closed 16 years ago
#9875 closed (invalid)
urls.py instructions incomplete
Reported by: | dberger | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
This version of the tutorial does not instruct the user to uncomment the following lines in urls.py:
from django.contrib import admin
admin.autodiscover()
It only instructs the user to uncomment:
(r'admin/(.*)', admin.site.root),
Perhaps this is not necessary in v 0.96. I am using v 1.0.2. I was sent to this version of the tutorial because I am not using a development version.
Note:
See TracTickets
for help on using tickets.
It is clearly written as the third bullet point: http://docs.djangoproject.com/en/dev/intro/tutorial02/#activate-the-admin-site.