mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 22:03:09 +00:00
24 lines
497 B
Python
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
|