From 2e91309c55a78e52acedc225d91b3d18bbf68cda Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 21 Feb 2010 23:39:45 +0000 Subject: [PATCH] Fixed #12675 - Add the admin app to the project template settings.py for consistency with the urls.py. Thanks, stephanhoyer. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12464 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/project_template/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py index 96b982f99a..361a36b36b 100644 --- a/django/conf/project_template/settings.py +++ b/django/conf/project_template/settings.py @@ -83,4 +83,6 @@ INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', + # Uncomment the next line to enable the admin: + # 'django.contrib.admin', )