From 33bf61712efbbdc47bcfe8e567cc9eb5995b8e5d Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 30 Mar 2016 17:05:26 -0500 Subject: [PATCH] more bootstrap config stuff these will be necessary for other jquery things in a moment --- dr_botzo/dr_botzo/settings.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dr_botzo/dr_botzo/settings.py b/dr_botzo/dr_botzo/settings.py index f17a338..5d3012b 100644 --- a/dr_botzo/dr_botzo/settings.py +++ b/dr_botzo/dr_botzo/settings.py @@ -141,6 +141,13 @@ EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend' EMAIL_FILE_PATH = BASE_DIR +# bootstrap3 +BOOTSTRAP3 = { + 'include_jquery': True, + 'javascript_in_head': True, +} + + # registration LOGIN_REDIRECT_URL = reverse_lazy('index') ACCOUNT_ACTIVATION_DAYS = 7