我有一个与上一个问题类似的问题:Django-ckeditor not display correct in html
除了我的设置似乎没问题,但仍然没有显示在 html 页面中。我错过了什么?
设置.py
INSTALLED_APPS = [
'ckeditor',
'ckeditor_uploader',
]
CKEDITOR_CONFIGS = {
'awesome_ckeditor': {
'toolbar': 'full',
},
}
CKEDITOR_IMAGE_BACKEND = "pillow"
并在呈现已编辑帖子的 html 页面中:
post_detail.html
<div class="post-content">{{post.text|safe|linebreaksbr}}</div>
在管理员方面一切正常:
但它没有显示在页面上: