update email sending
This commit is contained in:
parent
44d0046ccc
commit
2c0f8c4530
3 changed files with 14 additions and 10 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,6 +11,7 @@ __pycache__/
|
||||||
#django
|
#django
|
||||||
local_settings.py
|
local_settings.py
|
||||||
|
|
||||||
|
media/
|
||||||
!media/keep
|
!media/keep
|
||||||
/CACHE/
|
/CACHE/
|
||||||
/static/
|
/static/
|
||||||
|
|
|
@ -84,18 +84,18 @@ INSTALLED_APPS = (
|
||||||
'djangocms_file',
|
'djangocms_file',
|
||||||
'djangocms_picture',
|
'djangocms_picture',
|
||||||
'djangocms_video',
|
'djangocms_video',
|
||||||
# 'djangocms_flash',
|
'djangocms_flash',
|
||||||
# 'djangocms_googlemap',
|
'djangocms_googlemap',
|
||||||
# 'djangocms_inherit',
|
'djangocms_inherit',
|
||||||
# 'djangocms_link',
|
'djangocms_link',
|
||||||
# 'djangocms_teaser',
|
'djangocms_teaser',
|
||||||
'djangocms_page_meta',
|
'djangocms_page_meta',
|
||||||
'djangocms_text_ckeditor',
|
'djangocms_text_ckeditor',
|
||||||
'djangocms_admin_style',
|
'djangocms_admin_style',
|
||||||
'cmsplugin_filer_file',
|
'cmsplugin_filer_file',
|
||||||
'cmsplugin_filer_folder',
|
'cmsplugin_filer_folder',
|
||||||
'cmsplugin_filer_link',
|
'cmsplugin_filer_link',
|
||||||
# 'cmsplugin_filer_teaser',
|
'cmsplugin_filer_teaser',
|
||||||
'cmsplugin_filer_video',
|
'cmsplugin_filer_video',
|
||||||
#
|
#
|
||||||
# blog
|
# blog
|
||||||
|
@ -103,7 +103,7 @@ INSTALLED_APPS = (
|
||||||
'reversion',
|
'reversion',
|
||||||
# ungleich
|
# ungleich
|
||||||
'ungleich',
|
'ungleich',
|
||||||
'ungleich_page',
|
# 'ungleich_page',
|
||||||
'hosting',
|
'hosting',
|
||||||
'digitalglarus',
|
'digitalglarus',
|
||||||
'django_extensions',
|
'django_extensions',
|
||||||
|
@ -177,7 +177,7 @@ CMS_TEMPLATES = (
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||||
'NAME': 'app',
|
'NAME': 'app_new',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -303,7 +303,7 @@ META_SITE_PROTOCOL = 'http'
|
||||||
META_USE_SITES = True
|
META_USE_SITES = True
|
||||||
MIGRATION_MODULES = {
|
MIGRATION_MODULES = {
|
||||||
'cms': 'cms.migrations',
|
'cms': 'cms.migrations',
|
||||||
# 'filer': 'filer.migrations_django',
|
#'filer': 'filer.migrations_django',
|
||||||
# 'menus': 'menus.migrations_django',
|
# 'menus': 'menus.migrations_django',
|
||||||
'djangocms_flash': 'djangocms_flash.migrations_django',
|
'djangocms_flash': 'djangocms_flash.migrations_django',
|
||||||
'djangocms_googlemap': 'djangocms_googlemap.migrations_django',
|
'djangocms_googlemap': 'djangocms_googlemap.migrations_django',
|
||||||
|
@ -338,6 +338,7 @@ STATICFILES_FINDERS = (
|
||||||
THUMBNAIL_PROCESSORS = (
|
THUMBNAIL_PROCESSORS = (
|
||||||
'easy_thumbnails.processors.colorspace',
|
'easy_thumbnails.processors.colorspace',
|
||||||
'easy_thumbnails.processors.autocrop',
|
'easy_thumbnails.processors.autocrop',
|
||||||
|
#'easy_thumbnails.processors.scale_and_crop',
|
||||||
'filer.thumbnail_processors.scale_and_crop_with_subject_location',
|
'filer.thumbnail_processors.scale_and_crop_with_subject_location',
|
||||||
'easy_thumbnails.processors.filters',
|
'easy_thumbnails.processors.filters',
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,10 +3,12 @@ from .base import *
|
||||||
ADMINS = (
|
ADMINS = (
|
||||||
('Nico Schottelius', 'nico.schottelius@ungleich.ch'),
|
('Nico Schottelius', 'nico.schottelius@ungleich.ch'),
|
||||||
('Raul Ascencio', 'raul.ascencio@yandex.com'),
|
('Raul Ascencio', 'raul.ascencio@yandex.com'),
|
||||||
|
('Tomislav Rupcic','tmslav@gmail.com'),
|
||||||
|
|
||||||
)
|
)
|
||||||
# ('Sanghee Kim', 'sanghee.kim@ungleich.ch'),
|
# ('Sanghee Kim', 'sanghee.kim@ungleich.ch'),
|
||||||
|
|
||||||
MANAGERS = ADMINS
|
#MANAGERS = ADMINS
|
||||||
|
|
||||||
REGISTRATION_MESSAGE['message'] = REGISTRATION_MESSAGE['message'].format(host='digitalglarus.ungleich.ch',slug='{slug}')
|
REGISTRATION_MESSAGE['message'] = REGISTRATION_MESSAGE['message'].format(host='digitalglarus.ungleich.ch',slug='{slug}')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue