django-fobi/examples/simple/settings_override_simple_theme.py
2015-03-09 23:48:42 +01:00

18 lines
356 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')
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'