|
|
@ -110,8 +110,7 @@ INSTALLED_APPS = ( |
|
|
|
'reversion', |
|
|
|
'django_countries', |
|
|
|
'solo', |
|
|
|
'ckeditor', |
|
|
|
'ckeditor_uploader', |
|
|
|
'django_ckeditor_5', |
|
|
|
'taggit', |
|
|
|
'dal', |
|
|
|
'dal_select2', |
|
|
@ -186,26 +185,98 @@ SUMMERNOTE_CONFIG = { |
|
|
|
] |
|
|
|
} |
|
|
|
|
|
|
|
CKEDITOR_UPLOAD_PATH = "uploads/" |
|
|
|
CKEDITOR_IMAGE_BACKEND = 'pillow' |
|
|
|
#CKEDITOR_JQUERY_URL = '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js' |
|
|
|
CKEDITOR_CONFIGS = { |
|
|
|
CKEDITOR_5_CUSTOM_CSS = "css/ckeditor5_fix.css" |
|
|
|
# customColorPalette = [ |
|
|
|
# { |
|
|
|
# 'color': 'hsl(4, 90%, 58%)', |
|
|
|
# 'label': 'Red', |
|
|
|
# }, |
|
|
|
# { |
|
|
|
# 'color': 'hsl(340, 82%, 52%)', |
|
|
|
# 'label': 'Pink', |
|
|
|
# }, |
|
|
|
# { |
|
|
|
# 'color': 'hsl(291, 64%, 42%)', |
|
|
|
# 'label': 'Purple', |
|
|
|
# }, |
|
|
|
# { |
|
|
|
# 'color': 'hsl(262, 52%, 47%)', |
|
|
|
# 'label': 'Deep Purple', |
|
|
|
# }, |
|
|
|
# { |
|
|
|
# 'color': 'hsl(231, 48%, 48%)', |
|
|
|
# 'label': 'Indigo', |
|
|
|
# }, |
|
|
|
# { |
|
|
|
# 'color': 'hsl(207, 90%, 54%)', |
|
|
|
# 'label': 'Blue', |
|
|
|
# }, |
|
|
|
# ] |
|
|
|
CKEDITOR_5_FILE_STORAGE = "various.storage.UploadStorage" |
|
|
|
CKEDITOR_5_CONFIGS = { |
|
|
|
'default': { |
|
|
|
'entities': False, |
|
|
|
'toolbar': [ |
|
|
|
['Source', 'ShowBlocks', '-', 'Maximize'], |
|
|
|
['Bold', 'Italic', 'Subscript', 'Superscript', '-', 'RemoveFormat'], |
|
|
|
['NumberedList','BulletedList','-','Blockquote','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], |
|
|
|
['Link', 'Unlink', 'Anchor', '-', 'Image', 'Table', 'HorizontalRule'], |
|
|
|
['Format'], |
|
|
|
|
|
|
|
'language': 'cs', |
|
|
|
'blockToolbar': [ |
|
|
|
'paragraph', 'heading1', 'heading2', 'heading3', |
|
|
|
'|', |
|
|
|
'bulletedList', 'numberedList', |
|
|
|
'|', |
|
|
|
'blockQuote', |
|
|
|
], |
|
|
|
# 'toolbar': 'full', |
|
|
|
'height': '40em', |
|
|
|
'width': '100%', |
|
|
|
'toolbarStartupExpanded': False, |
|
|
|
'allowedContent' : True, |
|
|
|
'toolbar': ['sourceEditing', '|', 'heading', '|', |
|
|
|
# 'outdent', 'indent', '|', |
|
|
|
'bold', 'italic', 'link', 'underline', 'strikethrough', |
|
|
|
'code', |
|
|
|
# 'subscript', 'superscript', |
|
|
|
# 'highlight', |
|
|
|
'|', 'codeBlock', 'insertImage', |
|
|
|
'bulletedList', 'numberedList', 'todoList', '|', |
|
|
|
# 'blockQuote', '|', |
|
|
|
# 'fontSize', 'fontFamily', 'fontColor', 'fontBackgroundColor', |
|
|
|
# 'mediaEmbed', |
|
|
|
'removeFormat', |
|
|
|
# 'insertTable', |
|
|
|
], |
|
|
|
'image': { |
|
|
|
'toolbar': ['imageTextAlternative', '|', 'imageStyle:alignLeft', |
|
|
|
'imageStyle:alignRight', 'imageStyle:alignCenter', 'imageStyle:side', '|'], |
|
|
|
'styles': [ |
|
|
|
'full', |
|
|
|
'side', |
|
|
|
'alignLeft', |
|
|
|
'alignRight', |
|
|
|
'alignCenter', |
|
|
|
] |
|
|
|
|
|
|
|
}, |
|
|
|
# 'table': { |
|
|
|
# 'contentToolbar': [ 'tableColumn', 'tableRow', 'mergeTableCells', |
|
|
|
# 'tableProperties', 'tableCellProperties' ], |
|
|
|
# 'tableProperties': { |
|
|
|
# 'borderColors': customColorPalette, |
|
|
|
# 'backgroundColors': customColorPalette, |
|
|
|
# }, |
|
|
|
# 'tableCellProperties': { |
|
|
|
# 'borderColors': customColorPalette, |
|
|
|
# 'backgroundColors': customColorPalette, |
|
|
|
# } |
|
|
|
# }, |
|
|
|
'heading' : { |
|
|
|
'options': [ |
|
|
|
{ 'model': 'paragraph', 'title': 'Paragraph', 'class': 'ck-heading_paragraph' }, |
|
|
|
{ 'model': 'heading1', 'view': 'h1', 'title': 'Heading 1', 'class': 'ck-heading_heading1' }, |
|
|
|
{ 'model': 'heading2', 'view': 'h2', 'title': 'Heading 2', 'class': 'ck-heading_heading2' }, |
|
|
|
{ 'model': 'heading3', 'view': 'h3', 'title': 'Heading 3', 'class': 'ck-heading_heading3' }, |
|
|
|
] |
|
|
|
}, |
|
|
|
}, |
|
|
|
'list': { |
|
|
|
'properties': { |
|
|
|
'styles': 'true', |
|
|
|
'startIndex': 'true', |
|
|
|
'reversed': 'true', |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
# Webpack loader |
|
|
|