# -*- coding: utf-8 -*-
+from __future__ import absolute_import
import os.path
PROJECT_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
ADMINS = (
# (u'Marek Stępniowski', 'marek@stepniowski.com'),
- (u'Łukasz Rekucki', 'lrekucki@gmail.com'),
+ # (u'Łukasz Rekucki', 'lrekucki@gmail.com'),
+ (u'Radek Czajka', 'radoslaw.czajka@nowoczesnapolska.org.pl'),
)
MANAGERS = ADMINS
"django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
- "redakcja.context_processors.settings", # this is instead of media
+ "redakcja.context_processors.settings", # this is instead of media
"django.core.context_processors.request",
)
# CAS_SERVER_URL = "http://cas.fnp.pl/
CAS_LOGOUT_COMPLETELY = True
-from compress_settings import *
-
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
"AUTH_PASSWD": "platforma",
}
-# Import localsettings file, which may override settings defined here
-
-from localsettings import *
+SHOW_APP_VERSION = False
try:
- import logging
- if os.path.isfile(LOGGING_CONFIG_FILE):
- import logging.config
- logging.config.fileConfig(LOGGING_CONFIG_FILE)
- else:
- import sys
- logging.basicConfig(stream=sys.stderr)
-except ImportError as exc:
- raise
+ from redakcja.settings.compress import *
+except ImportError:
+ pass