我已经为页面添加了一个自定义标签(资源)。
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")),
...
]
)
谢谢