mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-16 11:11:01 +00:00
25 lines
609 B
Python
25 lines
609 B
Python
from .base import *
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
INSTALLED_APPS += [
|
|
"feincms", # FeinCMS
|
|
"fobi.contrib.apps.feincms_integration", # Fobi FeinCMS app
|
|
"page", # Example
|
|
# 'tinymce', # TinyMCE
|
|
]
|
|
|
|
try:
|
|
INSTALLED_APPS.remove(
|
|
"admin_tools.dashboard"
|
|
) if "admin_tools.dashboard" in INSTALLED_APPS else None
|
|
except Exception as err:
|
|
pass
|
|
|
|
FEINCMS_RICHTEXT_INIT_CONTEXT = {
|
|
"TINYMCE_JS_URL": STATIC_URL + "tiny_mce/tiny_mce.js",
|
|
}
|
|
|
|
MIGRATION_MODULES = {
|
|
"fobi": "fobi.migrations",
|
|
"db_store": "fobi.contrib.plugins.form_handlers.db_store.migrations",
|
|
}
|