src/hdalab/settings.py
changeset 335 51225e522007
parent 331 306b95944074
child 394 4911075b6000
equal deleted inserted replaced
334:8b34dc2c2f41 335:51225e522007
   121     # Always use forward slashes, even on Windows.
   121     # Always use forward slashes, even on Windows.
   122     # Don't forget to use absolute paths, not relative paths.
   122     # Don't forget to use absolute paths, not relative paths.
   123 )
   123 )
   124 
   124 
   125 INSTALLED_APPS = (
   125 INSTALLED_APPS = (
   126     'hdabo',
       
   127     'south',
   126     'south',
       
   127     'hdalab',
   128     'django.contrib.auth',
   128     'django.contrib.auth',
   129     'django.contrib.contenttypes',
   129     'django.contrib.contenttypes',
   130     'django.contrib.sessions',
   130     'django.contrib.sessions',
   131     'django.contrib.sites',
   131     'django.contrib.sites',
   132     'django.contrib.messages',
   132     'django.contrib.messages',
   134     'django.contrib.admin',
   134     'django.contrib.admin',
   135     'django_extensions',
   135     'django_extensions',
   136     'registration',
   136     'registration',
   137     'haystack',
   137     'haystack',
   138     'easy_thumbnails',
   138     'easy_thumbnails',
   139     'hdalab',
   139     'hdabo',
   140     'renkanmanager',
   140     'renkanmanager',
   141 )
   141 )
   142 
   142 
   143 
   143 
   144 SOUTH_MIGRATION_MODULES = {
   144 SOUTH_MIGRATION_MODULES = {
   164 
   164 
   165 
   165 
   166 from hdalab.config import * #@UnusedWildImport
   166 from hdalab.config import * #@UnusedWildImport
   167 
   167 
   168 if 'LOGIN_REDIRECT_URL' not in locals():
   168 if 'LOGIN_REDIRECT_URL' not in locals():
   169     LOGIN_REDIRECT_URL = BASE_URL + "hdabo"
   169     LOGIN_REDIRECT_URL = BASE_URL
   170 if 'LOGIN_URL' not in locals():
   170 if 'LOGIN_URL' not in locals():
   171     LOGIN_URL = BASE_URL + "hdalab/hdabo/accounts/login"
   171     LOGIN_URL = BASE_URL + "hdalab/hdabo/accounts/login"
   172 
   172