ckeditor を使用するユーザーの設定で、いくつかのカスタム ウィジェットを定義します。あるページでこのカスタム テンプレートを使用しようとすると、カスタム ウィジェットが表示されず、完全なウィジェットで表示されます。
この場合、ajax リクエストに由来する 1 つのフォームを使用します。
私のモデル:
class Comment(models.Model):
content = models.CharField(max_length=settings.COMMENT_TEXT_LIMIT if hasattr(settings, "COMMENT_TEXT_LIMIT") else 10000)
私のフォーム:
class CreateCommentForm(IdeiaForm):
content = forms.CharField(
max_length=settings.COMMENT_TEXT_LIMIT if hasattr(settings, "COMMENT_TEXT_LIMIT") else 10000,
required=True,
widget=forms.Textarea(attrs={'data-config': json_encode(getattr(settings, 'CKEDITOR_CONFIGS', None)['comment'])}))
そして私のHTMLファイル:
<textarea id="text_area_content" name="content" class="form-control" placeholder="Deixe seu comentário" data-url-login="{% url 'account:is_logged' %}" data-trigger="login" data-token="{{ csrf_token }}"></textarea>
私のsettings.py:
CKEDITOR_CONFIGS = {
'default': {
'toolbar': 'Basic',
},
'comment': {
'toolbar': 'Custom',
'toolbar_Custom': [
['Bold', 'Italic'],
['CodeSnippet'],
],
'entities': False,
'extraPlugins': ','.join([
'autolink', 'dialog',
'codesnippet','autogrow','placeholder',
]),
},
}