0

我有一个与上一个问题类似的问题: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>

在管理员方面一切正常:

但它没有显示在页面上:

4

1 回答 1

0

似乎 html 已正确呈现,并且仅缺少要为 html 标签添加的 css 格式。我将离开这篇文章,以防有人检查此类问题可能有用。

于 2017-10-02T13:25:32.443 回答