Opened 17 years ago

Closed 17 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',

Change History (1)

comment:1 by James Bennett, 17 years ago

Resolution: worksforme
Status: newclosed

All three of those applications are in the default INSTALLED_APPS setting created by manage.py startproject, so the tutorial is correct; if you're following along and used manage.py startproject, adding the admin app to INSTALLED_APPS is sufficient.

Note: See TracTickets for help on using tickets.
Back to Top