django-fobi/examples/simple/settings/foundation5_theme_feincms.py

17 lines
329 B
Python
Raw Normal View History

2016-10-17 01:30:09 +00:00
from .base import *
2014-10-11 03:54:24 +00:00
INSTALLED_APPS = list(INSTALLED_APPS)
INSTALLED_APPS += [
'feincms', # FeinCMS
2014-10-11 03:54:24 +00:00
'fobi.contrib.apps.feincms_integration', # Fobi FeinCMS app
2014-10-11 03:54:24 +00:00
'page', # Example
2014-10-11 03:54:24 +00:00
]
FEINCMS_RICHTEXT_INIT_CONTEXT = {
'TINYMCE_JS_URL': STATIC_URL + 'tiny_mce/tiny_mce.js',
}
FOBI_DEFAULT_THEME = 'foundation5'