summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/settings.py b/settings.py
index 858e749..2fd3810 100644
--- a/settings.py
+++ b/settings.py
@@ -1,5 +1,5 @@
# Django settings for aloha project.
-
+
import os
PROJECT_DIR = os.path.dirname(__file__)
@@ -30,7 +30,7 @@ DATABASES = {
# timezone as the operating system.
# If running in a Windows environment this must be set to the same as your
# system time zone.
-TIME_ZONE = 'America/Chicago'
+TIME_ZONE = 'Asia/Kolkata'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
@@ -119,16 +119,20 @@ INSTALLED_APPS = (
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
- # 'django.contrib.admin',
+ 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
#Third-Party Apps
'south',
+ 'registration',
'allotter',
+ 'profiler'
)
+ACCOUNT_ACTIVATION_DAYS = 7
+
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error.