Opened 18 years ago
Closed 18 years ago
#4208 closed (worksforme)
Tutorial Part2: admin depends on auth, content-type and sessions.
Reported by: | Thomas Güttler | Owned by: | Jacob |
---|---|---|---|
Component: | Documentation | Version: | dev |
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
Hi,
Tutorial Part 2:
http://www.djangoproject.com/documentation/tutorial02/
Add "django.contrib.admin" to your INSTALLED_APPS setting.
--> You need these, too:
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
Note:
See TracTickets
for help on using tickets.
All three of those applications are in the default
INSTALLED_APPS
setting created bymanage.py startproject
, so the tutorial is correct; if you're following along and usedmanage.py startproject
, adding the admin app toINSTALLED_APPS
is sufficient.