This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
djangocms-text-ckeditor/djangocms_text_ckeditor/settings.py

10 lines
325 B
Python

from django.conf import settings
from cms.utils import cms_static_url
# Uses TinyMCE as editor (no inline plugins). Requires django-tinymce app.
# If false, then WYMEditor is used.
USE_TINYMCE = getattr(settings, 'CMS_USE_TINYMCE', "tinymce" in settings.INSTALLED_APPS)
SKIN = getattr(settings, 'CKEDITOR_SKIN', 'kama')