diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-02-21 23:39:45 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-02-21 23:39:45 +0000 |
| commit | 2e91309c55a78e52acedc225d91b3d18bbf68cda (patch) | |
| tree | ff089bb0bb68e0f0e1c93433cb9fcbd71aceca5f /django/conf | |
| parent | d2d8b793192d3ad6a87796a8b5fc7de4229c1c79 (diff) | |
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
Diffstat (limited to 'django/conf')
| -rw-r--r-- | django/conf/project_template/settings.py | 2 |
1 files changed, 2 insertions, 0 deletions
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', ) |
