settings.py
changeset 12 243a7e90f3c3
parent 8 f0b5ff862c6d
child 20 72ce0ed9133a
equal deleted inserted replaced
11:2b21f6434ce2 12:243a7e90f3c3
     9 ADMINS = (
     9 ADMINS = (
    10     ('Shantanu Choudary', 'choudhary.shantanu@gmail.com'),
    10     ('Shantanu Choudary', 'choudhary.shantanu@gmail.com'),
    11 )
    11 )
    12 
    12 
    13 MANAGERS = ADMINS
    13 MANAGERS = ADMINS
       
    14 
       
    15 SESSION_EXPIRE_AT_BROWSER_CLOSE = True
       
    16 
       
    17 DEFAULT_FROM_EMAIL = 'admin@scipy.in'
    14 
    18 
    15 DATABASE_ENGINE = 'mysql'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    19 DATABASE_ENGINE = 'mysql'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
    16 DATABASE_NAME = 'conference'             # Or path to database file if using sqlite3.
    20 DATABASE_NAME = 'conference'             # Or path to database file if using sqlite3.
    17 DATABASE_USER = 'root'             # Not used with sqlite3.
    21 DATABASE_USER = 'root'             # Not used with sqlite3.
    18 DATABASE_PASSWORD = ''         # Not used with sqlite3.
    22 DATABASE_PASSWORD = ''         # Not used with sqlite3.
    55 # Make this unique, and don't share it with anybody.
    59 # Make this unique, and don't share it with anybody.
    56 SECRET_KEY = '(ob412sq1npyyuvfi*b@eby$ip=1rfl*l*b%8f4&l@)3iu$&4#'
    60 SECRET_KEY = '(ob412sq1npyyuvfi*b@eby$ip=1rfl*l*b%8f4&l@)3iu$&4#'
    57 
    61 
    58 AUTH_PROFILE_MODULE = 'conference.participant'
    62 AUTH_PROFILE_MODULE = 'conference.participant'
    59 
    63 
       
    64 # List of context processors.
       
    65 TEMPLATE_CONTEXT_PROCESSORS = (
       
    66     'django.core.context_processors.auth',
       
    67     'django.core.context_processors.debug',
       
    68     'django.core.context_processors.i18n',
       
    69     'django.core.context_processors.media'
       
    70 )
       
    71 
    60 # List of callables that know how to import templates from various sources.
    72 # List of callables that know how to import templates from various sources.
    61 TEMPLATE_LOADERS = (
    73 TEMPLATE_LOADERS = (
    62     'django.template.loaders.filesystem.load_template_source',
    74     'django.template.loaders.filesystem.load_template_source',
    63     'django.template.loaders.app_directories.load_template_source',
    75     'django.template.loaders.app_directories.load_template_source',
    64 #     'django.template.loaders.eggs.load_template_source',
    76 #     'django.template.loaders.eggs.load_template_source',