我想在Wagtail管理页面的选项卡上获取默认值标签

时间:2019-08-15 04:24:12

标签: wagtail

我已经为页面添加了一个自定义标签(资源)。

edit_handler = TabbedInterface(
    [
        ObjectList(content_panels, heading='Content'),
        ObjectList(ressources_panels, heading='Ressources'),
        ObjectList(Page.promote_panels, heading='Promote'),
        ObjectList(Page.settings_panels, heading='Settings'),
    ]
)

我必须重新定义所有选项卡。如何获取默认选项卡的默认标题值?

我不知道获取默认标签的吸气剂名称或方法。

edit_handler = TabbedInterface(
    [
        # ObjectList(content_panels, heading='Content'),
        ObjectList(content_panels, heading=content_panels.__getattribute__("title")),
        ...
    ]
)

谢谢

0 个答案:

没有答案