equal
deleted
inserted
replaced
162 |
162 |
163 |
163 |
164 class WFHistoryVComponent(component.CtxComponent): |
164 class WFHistoryVComponent(component.CtxComponent): |
165 """display the workflow history for entities supporting it""" |
165 """display the workflow history for entities supporting it""" |
166 __regid__ = 'wfhistory' |
166 __regid__ = 'wfhistory' |
167 __select__ = WFHistoryView.__select__ & component.EntityVComponent.__select__ |
167 __select__ = component.EntityVComponent.__select__ & WFHistoryView.__select__ |
168 context = 'navcontentbottom' |
168 context = 'navcontentbottom' |
169 title = _('Workflow history') |
169 title = _('Workflow history') |
170 |
170 |
171 def render_body(self, w): |
171 def render_body(self, w): |
172 if hasattr(self, 'cell_call'): |
172 if hasattr(self, 'cell_call'): |