mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-27 16:24:43 +00:00
16 lines
322 B
Python
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
|