Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在夹层 CMS 中使用 django 模板语言将富文本字段作为变量访问
如果您使用 Mezzanine 中内置的 RichTextPage 模型,则标记为:
{{ page.richtextpage.content }}
如果您有一个名为 CustomModel 的自定义模型源自 Page,该模型有一个名为 content 的字段,该字段使用 Mezzanine 的 RichTextField,则标记为:
{{ page.custommodel.content }}