web/views/wfentities.py
author sylvain.thenault@logilab.fr
Fri, 30 Jan 2009 15:30:15 +0100
changeset 531 d33f80ff1b72
parent 0 b97547f5f1fa
child 688 cddfbdee0eb3
permissions -rw-r--r--
use self.rset / self.row

"""html view for workflow related entities

:organization: Logilab
:copyright: 2001-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
"""
__docformat__ = "restructuredtext en"

from cubicweb.common.view import EntityView

class CellView(EntityView):
    id = 'cell'
    accepts = ('TrInfo',)
    def cell_call(self, row, col, cellvid=None):
        entity = self.entity(row, col)
        self.w(entity.printable_value('comment'))