mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-20 18:31:52 +00:00
11 lines
182 B
Python
11 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'
|