Wagtail streamfield 未按预期呈现
Wagtail streamfield not rendering as expected
我是 Wagtail 的新手,刚刚成功安装了我的第一个带有 StreamField
块的站点:
class DefaultPage(Page):
author = models.CharField(max_length=255, blank=True, null=True)
date = models.DateField("Post date", blank=True, null=True)
body = StreamField([
('title', blocks.CharBlock(form_classname="full title")),
('paragraph', blocks.RichTextBlock()),
('image', ImageChooserBlock()),
], blank=True, null=True)
但是,streamfield 的管理面板没有按预期呈现。根据 Wagtail 官方网站,我希望有一个带有内联编辑功能的黑色控制面板:
相反,我有一个不同的“轻”主题 UI:
我在看不同的功能吗?是不是官方网站上没有最新版本的更新?
是的,StreamField 的设计是updated in Wagtail 2.7。
(已标记过时的截图,应该hopefully be fixed in the next release。)
我是 Wagtail 的新手,刚刚成功安装了我的第一个带有 StreamField
块的站点:
class DefaultPage(Page):
author = models.CharField(max_length=255, blank=True, null=True)
date = models.DateField("Post date", blank=True, null=True)
body = StreamField([
('title', blocks.CharBlock(form_classname="full title")),
('paragraph', blocks.RichTextBlock()),
('image', ImageChooserBlock()),
], blank=True, null=True)
但是,streamfield 的管理面板没有按预期呈现。根据 Wagtail 官方网站,我希望有一个带有内联编辑功能的黑色控制面板:
相反,我有一个不同的“轻”主题 UI:
我在看不同的功能吗?是不是官方网站上没有最新版本的更新?
是的,StreamField 的设计是updated in Wagtail 2.7。
(已标记过时的截图,应该hopefully be fixed in the next release。)