我在dexterity内容类型中有一些代码,如下所示:
form.fieldset(
'transitionsLog',
label=_(u"Transitions Log"),
fields=['t_log']
)
form.mode(t_log='hidden')
t_log = schema.TextLine(
title=_(u'Transitions log'),
)
Run Code Online (Sandbox Code Playgroud)
在添加/编辑表单中,字段t_log隐藏但字段集选项卡"转换日志"仍显示在表单中,如上所示...

我不知道在添加/编辑表单中隐藏"过渡日志"选项卡,
我能怎么做 ?