Skip to content

Instantly share code, notes, and snippets.

@khchine5
Created August 6, 2016 22:47
Show Gist options
  • Save khchine5/900dfcb726f8285aba8ee1070cefe323 to your computer and use it in GitHub Desktop.
Save khchine5/900dfcb726f8285aba8ee1070cefe323 to your computer and use it in GitHub Desktop.
djangocms text ckeditor: Active all options of ckeditor as Font selection , image insertion.
CKEDITOR_SETTINGS = {
'language': '{{ language }}',
'skin': 'moono',
'toolbar_HTMLField': [
['Source', '-', 'Save', 'NewPage', 'DocProps', 'Preview', 'Print', '-', 'Templates'],
['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'],
['Find', 'Replace', '-', 'SelectAll', '-', 'SpellChecker', 'Scayt'],
['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton',
'HiddenField'],
['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'],
['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-',
'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl'],
['Link', 'Unlink', 'Anchor'],
['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak'],
['Styles', 'Format', 'Font', 'FontSize'],
['TextColor', 'BGColor'],
['Maximize', 'ShowBlocks', '-', 'About']
],
'toolbarCanCollapse': True,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment