settings: added ckeditor configuration

This commit is contained in:
rascencio 2015-06-13 22:22:36 -06:00
parent 700f35bf01
commit ed2012cd40
1 changed files with 11 additions and 0 deletions

View File

@ -392,6 +392,17 @@ BLOG_POSTS_LIST_TRUNCWORDS_COUNT = 100
BLOG_MULTISITE = True
BLOG_AUTHOR_DEFAULT = True
CKEDITOR_SETTINGS = {
'language': '{{ language }}',
'toolbar_CMS': [
['Undo', 'Redo'],
['cmsplugins', '-', 'ShowBlocks'],
['Format', 'Styles'],
],
'skin': 'moono',
}
try:
from .local.local_settings import *
except ImportError as e: