fnp
/
cas.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
l10n
[cas.git]
/
src
/
cas
/
settings.py
diff --git
a/src/cas/settings.py
b/src/cas/settings.py
index
1883595
..
4101776
100644
(file)
--- a/
src/cas/settings.py
+++ b/
src/cas/settings.py
@@
-1,4
+1,3
@@
-# -*- coding: utf-8 -*-
from os import path
PROJECT_ROOT = path.realpath(path.dirname(__file__))
from os import path
PROJECT_ROOT = path.realpath(path.dirname(__file__))
@@
-84,18
+83,22
@@
LOCALE_PATHS = (
)
INSTALLED_APPS = (
)
INSTALLED_APPS = (
+ 'accounts.apps.AccountsConfig',
+ 'emails.apps.EmailsConfig',
+ 'services.apps.ServicesConfig',
+ 'ssh_keys.apps.SshKeysConfig',
+
+ 'cas_provider',
+ 'django_gravatar',
+
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.auth',
'django.contrib.contenttypes',
+ 'django.contrib.messages',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.staticfiles',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.staticfiles',
-
- 'cas_provider',
- 'django_gravatar',
-
- 'accounts',
)
MIDDLEWARE = (
)
MIDDLEWARE = (
@@
-117,6
+120,8
@@
SESSION_COOKIE_NAME = 'fnpcas'
GRAVATAR_DEFAULT_IMAGE = 'mm'
GRAVATAR_URL_PREFIX = 'https://www.gravatar.com/'
GRAVATAR_DEFAULT_IMAGE = 'mm'
GRAVATAR_URL_PREFIX = 'https://www.gravatar.com/'
+SITE_TITLE = 'Fundacja Nowoczesna Polska'
+
# Import localsettings file, which may override settings defined here
try:
from .localsettings import *
# Import localsettings file, which may override settings defined here
try:
from .localsettings import *