具有以下定制Page
模型,
class PostDetail(Page):
body = RichTextField(blank=True)
search_fields = Page.search_fields + [
index.SearchField("body"),
]
content_panels = Page.content_panels + [
FieldPanel("title"),
FieldPanel("body"),
]
我没有添加title = models.Char()
,因为它将继承wagtail 内置模型的PostDetail
所有属性(包括)。title
Page