summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-02-22 00:43:47 +0000
committerJannis Leidel <jannis@leidel.info>2010-02-22 00:43:47 +0000
commit4f1134898cf9c5d169a0c48131af81b71a8ba605 (patch)
treeef5b38608b189162d73d8b5d68f285044febe355
parent713bac952f44bde7b80b4266eecb270ea248f10d (diff)
[1.1.X] Fixed #12675 - Add the admin app to the project template settings.py for consistency with the urls.py. Thanks, stephanhoyer.
Backport of r12464. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12481 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/project_template/settings.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/django/conf/project_template/settings.py b/django/conf/project_template/settings.py
index bbf005ddea..d3013a541f 100644
--- a/django/conf/project_template/settings.py
+++ b/django/conf/project_template/settings.py
@@ -76,4 +76,6 @@ INSTALLED_APPS = (
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
+ # Uncomment the next line to enable the admin:
+ # 'django.contrib.admin',
)