django-fobi/examples/simple/settings_override_simple_theme.py

10 lines
182 B
Python

from settings import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
INSTALLED_APPS.append('override_simple_theme')
except Exception as e:
pass
FOBI_DEFAULT_THEME = 'simple'