summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorGeorg Bauer <gb@hugo.westfalen.de>2005-10-27 23:03:13 +0000
committerGeorg Bauer <gb@hugo.westfalen.de>2005-10-27 23:03:13 +0000
commit30b857649d477336451ff68cef1cb8b024fd5b6d (patch)
tree8239909939e3791a2d8373988f224a2b16caed02 /django
parentec56b7241d592b6dc7fdaec6c342e8b3f148a443 (diff)
i18n: startproject still did create the settings directory with admin.py setting - leftover from before the admin move. fixed.
git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@1015 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-rw-r--r--django/conf/project_template/settings/admin.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/django/conf/project_template/settings/admin.py b/django/conf/project_template/settings/admin.py
deleted file mode 100644
index 0f89c08029..0000000000
--- a/django/conf/project_template/settings/admin.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Django settings for {{ project_name }} project admin site.
-
-from main import *
-
-TEMPLATE_DIRS = (
- # Put strings here, like "/home/html/django_templates".
-)
-ROOT_URLCONF = '{{ project_name }}.settings.urls.admin'
-MIDDLEWARE_CLASSES = (
- 'django.middleware.sessions.SessionMiddleware',
- 'django.middleware.admin.AdminUserRequired',
- 'django.middleware.common.CommonMiddleware',
- 'django.middleware.locale.LocaleMiddleware',
-)
-
-# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
-# trailing slash.
-# Examples: "http://foo.com/media/", "/media/".
-ADMIN_MEDIA_PREFIX = '/media/'