diff options
| author | Johan Berggren <jbn@nordu.net> | 2012-05-14 15:56:57 +0200 | 
|---|---|---|
| committer | Johan Berggren <jbn@nordu.net> | 2012-05-14 15:56:57 +0200 | 
| commit | 59b22883948f01152da795bf802aa0d60ec9a12e (patch) | |
| tree | 582ca2418f28ed03b2f6f6ae092812d64658d702 /coip/settings.py | |
| parent | 080b0e4e0b8efb77da251d40008002bad89713af (diff) | |
Fix in autodiscover for consumer app. Updated settings for Django 1.4.
Some small fixes in consumer.models
Diffstat (limited to 'coip/settings.py')
| -rw-r--r-- | coip/settings.py | 11 | 
1 files changed, 8 insertions, 3 deletions
| diff --git a/coip/settings.py b/coip/settings.py index 5f8be8a..b1aacc4 100644 --- a/coip/settings.py +++ b/coip/settings.py @@ -70,9 +70,11 @@ SESSION_ENGINE = "django.contrib.sessions.backends.cache"  # List of callables that know how to import templates from various sources.  TEMPLATE_LOADERS = ( -    'django.template.loaders.filesystem.load_template_source', -    'django.template.loaders.app_directories.load_template_source', -    'django.template.loaders.eggs.load_template_source', +    'django.template.loaders.filesystem.Loader', +    'django.template.loaders.app_directories.Loader', +    #'django.template.loaders.filesystem.load_template_source', +    #'django.template.loaders.app_directories.load_template_source', +    #'django.template.loaders.eggs.load_template_source',  )  MIDDLEWARE_CLASSES = ( @@ -132,3 +134,6 @@ CARROT_BACKEND = "django"  import djcelery  djcelery.setup_loader() + +EMAIL_HOST = '127.0.0.1' +EMAIL_PORT = '1025' | 
