mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 13:54:41 +00:00
10 lines
182 B
Python
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'
|