From 5c1d9c24da44912d8b0f624e7fb064f70656c053 Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Fri, 4 Sep 2015 10:18:26 -0300 Subject: [PATCH] Add missing setting for crispy forms + foundation --- sapl/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sapl/settings.py b/sapl/settings.py index 0857c2161..f219be591 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -138,6 +138,7 @@ MEDIA_ROOT = BASE_DIR.child("media") DAB_FIELD_RENDERER = \ 'django_admin_bootstrapped.renderers.BootstrapFieldRenderer' CRISPY_TEMPLATE_PACK = 'foundation-5' +CRISPY_ALLOWED_TEMPLATE_PACKS = 'foundation-5' CRISPY_FAIL_SILENTLY = not DEBUG BOWER_COMPONENTS_ROOT = BASE_DIR.child("bower")