我只需要为我的 AdminForm 中的一个字段配置 ckeditor 的自定义参数(工具栏、宽度和高度)
class BlogAdminForm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super(BlogAdminForm, self).__init__(*args, **kwargs)
self.fields['description'].widget = CKEditor(attrs={'cols': 100, 'rows': 25})
如何只为这个字段设置ckeditor的特定参数(例如«toolbarGroups»,«width»,«height»等)?