AdminForm の 1 つのフィールドだけに 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» など) を設定するにはどうすればよいですか?