django-fobi/examples/simple/settings_override_simple_theme.py

24 lines
497 B
Python

from nine.versions import DJANGO_GTE_1_7
from settings import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
INSTALLED_APPS.append('override_simple_theme')
INSTALLED_APPS.append('crispy_forms')
except Exception as e:
pass
if DJANGO_GTE_1_7:
try:
INSTALLED_APPS.remove('south') if 'south' in INSTALLED_APPS else None
except:
pass
FOBI_DEFAULT_THEME = 'simple'
CRISPY_TEMPLATE_PACK = 'uni_form'
# Make crispy-forms fail loud
CRISPY_FAIL_SILENTLY = not DEBUG