django-fobi/examples/simple/settings/override_simple_theme.py
2022-07-12 22:53:28 +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