例如,我有我的主页模型:
class HomePage(Page):
about = RichTextField(blank=True)
date = models.DateField(auto_now=True)
content_panels = Page.content_panels + [
FieldPanel('about',classname="full")
]
class Meta:
verbose_name = "Homepage"
我还希望在该页面上包含一些第三方信息.在我的情况下它的论坛.写一些ViewMixin会很棒,比如:
class ForumMixin(object):
pass
# add latest forums to context
我可以通过编写我的Django CBV来做到这一点,但我真的想知道Wagtail Native Way.
谢谢!
最佳答案
原文链接:https://www.f2er.com/python/439604.html