核心问题是模板的处理wagtail
RichTextField
和处理StreamField
完全不同。
我正在尝试完成类似于以下内容的事情:
{% with post=post.specific %}
{% if post.content_type == 'streamfield' %}
{% include_block post.body %}
{% else %}
{{ post.body|richtext }}
{% endif %}
{% endwith %}