我对 django-ckeditor 有一些错误:所有按钮和面板上的标题
我找不到配置参数来禁用它。
django-ckeditor==5.0.1
配置:
CKEDITOR_UPLOAD_PATH = 'uploads/'
CKEDITOR_CONFIGS = {
…
'simple': {
'toolbar': [
['Source'],
['Bold', 'Italic', 'Underline',],
],
'height': 100,
'width': '100%',
'toolbarCanCollapse': False,
'forcePasteAsPlainText': True,
'autoParagraph': False,
},
…
}
在模型中:
class TextPart(models.Model):
text = RichTextField(blank=True, null=True, verbose_name=u'Текст', config_name='simple')