174 lines
No EOL
4.7 KiB
Python
174 lines
No EOL
4.7 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Django settings for histone project.
|
|
"""
|
|
Django settings for eds project.
|
|
|
|
Generated by 'django-admin startproject' using Django 1.10.4.
|
|
|
|
For more information on this file, see
|
|
https://docs.djangoproject.com/en/1.10/topics/settings/
|
|
|
|
For the full list of settings and their values, see
|
|
https://docs.djangoproject.com/en/1.10/ref/settings/
|
|
"""
|
|
|
|
import os
|
|
|
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
print(BASE_DIR)
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/
|
|
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
ALLOWED_HOSTS = ['eds.webzos.net', 'localhost', '127.0.0.1']
|
|
|
|
|
|
# Application definition
|
|
|
|
INSTALLED_APPS = [
|
|
'django.contrib.admin',
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
'django.contrib.sessions',
|
|
'django.contrib.messages',
|
|
'django.contrib.staticfiles',
|
|
'debug_toolbar',
|
|
'chartjs',
|
|
'tinymce',
|
|
'cms',
|
|
]
|
|
|
|
|
|
MIDDLEWARE = [
|
|
'django.middleware.security.SecurityMiddleware',
|
|
'django.contrib.sessions.middleware.SessionMiddleware',
|
|
'django.middleware.common.CommonMiddleware',
|
|
'django.middleware.csrf.CsrfViewMiddleware',
|
|
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|
'django.contrib.messages.middleware.MessageMiddleware',
|
|
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
|
'debug_toolbar.middleware.DebugToolbarMiddleware',
|
|
]
|
|
|
|
ROOT_URLCONF = 'common.urls'
|
|
|
|
TEMPLATES = [
|
|
{
|
|
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
|
'DIRS': [os.path.join(BASE_DIR, 'templates')],
|
|
'APP_DIRS': True,
|
|
'OPTIONS': {
|
|
'context_processors': [
|
|
'django.template.context_processors.debug',
|
|
'django.template.context_processors.request',
|
|
'django.contrib.auth.context_processors.auth',
|
|
'django.contrib.messages.context_processors.messages',
|
|
],
|
|
},
|
|
},
|
|
]
|
|
|
|
WSGI_APPLICATION = 'common.wsgi.application'
|
|
|
|
# Password validation
|
|
# https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators
|
|
|
|
AUTH_PASSWORD_VALIDATORS = [
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
|
},
|
|
{
|
|
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
|
},
|
|
]
|
|
|
|
|
|
DEBUG_TOOLBAR_PANELS = [
|
|
'debug_toolbar.panels.versions.VersionsPanel',
|
|
'debug_toolbar.panels.timer.TimerPanel',
|
|
'debug_toolbar.panels.settings.SettingsPanel',
|
|
'debug_toolbar.panels.headers.HeadersPanel',
|
|
'debug_toolbar.panels.request.RequestPanel',
|
|
'debug_toolbar.panels.sql.SQLPanel',
|
|
'debug_toolbar.panels.staticfiles.StaticFilesPanel',
|
|
'debug_toolbar.panels.templates.TemplatesPanel',
|
|
'debug_toolbar.panels.cache.CachePanel',
|
|
'debug_toolbar.panels.signals.SignalsPanel',
|
|
'debug_toolbar.panels.logging.LoggingPanel',
|
|
'debug_toolbar.panels.redirects.RedirectsPanel',
|
|
]
|
|
|
|
|
|
# Internationalization
|
|
# https://docs.djangoproject.com/en/1.10/topics/i18n/
|
|
|
|
LANGUAGE_CODE = 'fr-fr'
|
|
|
|
TIME_ZONE = 'Europe/Zurich'
|
|
|
|
USE_I18N = True
|
|
|
|
USE_L10N = True
|
|
|
|
USE_TZ = True
|
|
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
# https://docs.djangoproject.com/en/1.10/howto/static-files/
|
|
|
|
STATIC_URL = '/static/'
|
|
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
|
|
|
|
MEDIA_URL = '/media/'
|
|
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
|
|
|
|
"""
|
|
STUDENT_IMPORT_MAPPING = {
|
|
'Num élève': 'id_ext',
|
|
'Nom élève': 'nom',
|
|
'Prénom élève': 'prenom',
|
|
'Rue élève': 'adresse',
|
|
'Localité élève': 'localite', # pcode is separated from city in prepare_import
|
|
'Tél. élève': 'telephone',
|
|
'Natel élève': 'mobile',
|
|
'Email élève': 'email_rpn',
|
|
'Date nais. élève': 'date_naissance',
|
|
'Classe': 'klasse',
|
|
}
|
|
"""
|
|
|
|
DOMAINE_COULEURS = {
|
|
'D1': '#fcaf3e',
|
|
'D2': '#cc0000',
|
|
'D3': '#ef896b',
|
|
'D4': '#ad7fa8',
|
|
'D5': '#729fcf',
|
|
'D6': '#73d216',
|
|
'D7': '#ffffff',
|
|
'D8': '#babdb6'
|
|
}
|
|
|
|
TINYMCE_JS_URL = MEDIA_URL + 'js/tiny_mce/tiny_mce.js'
|
|
TINYMCE_JS_ROOT = MEDIA_ROOT + 'js/tiny_mce'
|
|
TINYMCE_DEFAULT_CONFIG = {
|
|
'plugins': "table,spellchecker,paste,searchreplace",
|
|
'theme': "advanced",
|
|
'cleanup_on_startup': True,
|
|
'custom_undo_redo_levels': 10,
|
|
'theme_advanced_resizing': True,
|
|
}
|
|
TINYMCE_SPELLCHECKER = True
|
|
TINYMCE_COMPRESSOR = True
|
|
|
|
from .local_settings import * |