* started workin on 'navbar' module * changed bootstrap theme to bootswatch/Simplex * big work on navbar logic * starting creating menus using navbar * converted app views to new Wepage decorator, updated navbar * reimplemented DernieresMaraudes as a dropdown instead of ContextMixin * reorganised static files, minor code cleanups * turned Link.href into lazy-evaluated property * collapsed 'navbar' module into 'website', dynamic building of ApplicationMenu subclasses * minor cleanup * blah blah blah * added way to add admin/non-admin links * minor style change : red border for active page instead of all dropdowns * deleted file * prepare adding removing menu templates files, being replaced by code * essayé de généraliser le code pour les modaux bootstrap, non testé git status * more preparation and thinking on navbar app_menus logic... * added LinkManager and DropdownManager, getting closer... * small fix in DropdownManager.__get__ * boosted up work: keep it simple so it can be merged fast, major layout changes * added month filter on maraudes:liste * added 'as_icon' filter to display boolean/null values as bootstrap icons * remove inactive user from planning selection * removed all unused 'menu' templates * set up django_select2 to use static files * small fix after review
45 lines
935 B
Python
45 lines
935 B
Python
|
|
from .base_settings import *
|
|
|
|
# Added settings
|
|
|
|
INSTALLED_APPS += [
|
|
# Design
|
|
'bootstrap3',
|
|
'django_select2',
|
|
# Search Engine
|
|
'watson',
|
|
# Project apps
|
|
'maraudes',
|
|
'sujets',
|
|
'notes',
|
|
'suivi',
|
|
'utilisateurs',
|
|
'website',
|
|
]
|
|
|
|
|
|
LOGIN_URL = 'index'
|
|
|
|
BOOTSTRAP3 = {
|
|
# The URL to the jQuery JavaScript file
|
|
'base_url': os.path.join(STATIC_URL, 'css', 'bootstrap/'),
|
|
'jquery_url': os.path.join(STATIC_URL, 'scripts', 'jquery.min.js'),
|
|
'include_jquery': True,
|
|
# Label class to use in horizontal forms
|
|
'horizontal_label_class': 'col-md-2',
|
|
# Field class to use in horizontal forms
|
|
'horizontal_field_class': 'col-md-10',
|
|
}
|
|
|
|
# Django-select2 Configuration
|
|
SELECT2_JS = 'scripts/select2.min.js'
|
|
SELECT2_CSS = 'css/select2.min.css'
|
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
|
|
AUTHENTICATION_BACKENDS = [
|
|
'website.backends.MyBackend'
|
|
]
|
|
|
|
|