~nhandler/ubuntu-teamreports/comments

« back to all changes in this revision

Viewing changes to teamreports/settings.py

  • Committer: Daniel Holbach
  • Date: 2010-04-13 16:29:38 UTC
  • Revision ID: daniel.holbach@canonical.com-20100413162938-o7lw12hi3rfi9mw0
make project name more appropriate

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Django settings for reports project.
 
1
# Django settings for teamreports project.
2
2
 
3
3
import os
4
4
 
13
13
)
14
14
 
15
15
MANAGERS = ADMINS
16
 
LP_PROJECT_NAME = 'reports'
 
16
LP_PROJECT_NAME = 'ubuntu-teamreports'
17
17
 
18
18
DATABASE_ENGINE = 'sqlite3'
19
 
DATABASE_NAME = 'reports.db'
 
19
DATABASE_NAME = 'teamreports.db'
20
20
 
21
21
# Local time zone for this installation. Choices can be found here:
22
22
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
72
72
    "django.core.context_processors.media",
73
73
)
74
74
 
75
 
ROOT_URLCONF = 'reports.urls'
 
75
ROOT_URLCONF = 'teamreports.urls'
76
76
 
77
77
TEMPLATE_DIRS = (
78
78
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
86
86
    'django.contrib.contenttypes',
87
87
    'django.contrib.sessions',
88
88
    'django.contrib.admin',
89
 
    'teamreports',
 
89
    'reports',
90
90
    'django_openid_auth',
91
91
)
92
92