如何在Django中安装CKEditor插件

时间:2016-04-06 16:04:11

标签: python django ckeditor django-ckeditor

我正在尝试为django-CKEditor安装Image uploader插件。但是,按钮不会出现在CKeditor小部件中。

我用于安装CKEditor插件的步骤如下:

  1. 下载并解压缩CKEditor插件的图像上传器和浏览器。
  2. 将提取的文件复制到CKeditor的静态文件夹,即/ project / static / ckeditor / ckeditor / plugins / imageuploader。还尝试使用manage.py collectstatic
  3. 配置settings.py文件,如下所示。

    CKEDITOR_CONFIGS = {
        'default': {
            'toolbar': [
                [      'Undo', 'Redo',
                  '-', 'Bold', 'Italic', 'Underline',
                  '-', 'Link', 'Unlink', 'Anchor',
                  '-', 'Format',
                  '-', 'SpellChecker', 'Scayt',
                  '-', 'Maximize',
                ],
            ],
            'width': 840,
            'height': 300,
            'toolbarCanCollapse': False,
        },
    
        'simple_toolbar': {
            'toolbar': [['imageuploader',],],
            'width': 840,
            'height': 300,
            'removePlugins': 'stylesheetparser',
            'extraPlugins': 'imageuploader',
        },
    
    }
    
  4. 如下配置小部件。

    class Form(forms.ModelForm):
        description=forms.CharField(widget=CKEditorWidget(config_name='simple_toolbar'
    ))
    

1 个答案:

答案 0 :(得分:0)

试试这个:

在你的模特中:

class YouModel(models.Model)
    text = HTMLField(configuration='CKEDITOR_SETTINGS_MODEL1', blank=True)

在settings.py文件中:

CKEDITOR_SETTINGS_MODEL1 = {
    'language': '{{ language }}',
    'toolbar_HTMLField': [
    {'name': 'basicstyles', 'items': ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat']},
        {'name': 'colors', 'items': ['TextColor', 'BGColor']},
        {'name': 'paragraph', 'items': ['NumberedList', 'BulletedList', 'Outdent', 'Indent', 'Blockquote', 'JustifyLeft', 'JustifyCenter', 'JustifyRight',
                    'JustifyBlock', '-', 'BidiLtr', 'BidiRtl', 'Language']},
        {'name': 'clipboard', 'items': ['Paste', 'Undo', 'Redo']},
        {'name': 'tools', 'items': ['Maximize']},
        {'name': 'styles', 'items': ['Styles', 'Format', 'Font', 'FontSize', 'Scayt']},
        {'name': 'document', 'items': ['Preview', 'Print']},
        {'name': 'editing', 'items': ['Find', 'Replace', 'SelectAll']},
        {'name': 'links', 'items': ['Link', 'Unlink', 'Table', 'SpecialChar', 'Smiley']},
    ],
    'height': '777px',
    'width': '759px',
    'scayat_slang': ['en_US, en_GB, pt_BR, da_DK, nl_NL, en_CA, fi_FI, fr_FR, fr_CA, de_DE, el_GR, it_IT, nb_NO, pt_PT, es_ES, uk_UK'],
    'removePlugins': 'elementspath',
    'extraPlugins': ','.join(['div', 'clipboard', 'dialog', 'scayt',]), 
}

您可以更改此尺寸,按钮,其他