django-fobi/examples/simple/settings/override_simple_theme.py
Artur Barseghyan 97747e3de9 wipe lt 1.8
2019-05-21 21:47:00 +02:00

16 lines
322 B
Python

from .base import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
INSTALLED_APPS.append('override_simple_theme')
INSTALLED_APPS.append('crispy_forms')
except Exception as err:
pass
FOBI_DEFAULT_THEME = 'simple'
CRISPY_TEMPLATE_PACK = 'uni_form'
# Make crispy-forms fail loud
CRISPY_FAIL_SILENTLY = not DEBUG