diff -r 29f74716fd70 -r 5376aaadd16b web/views/baseviews.py --- a/web/views/baseviews.py Thu Oct 15 11:20:26 2009 +0200 +++ b/web/views/baseviews.py Mon Oct 19 15:16:41 2009 +0200 @@ -115,7 +115,7 @@ __regid__ = 'secondary' title = _('secondary') - def cell_call(self, row, col): + def cell_call(self, row, col, **kwargs): """the secondary view for an entity secondary = icon + view(oneline) """ @@ -128,7 +128,7 @@ __regid__ = 'oneline' title = _('oneline') - def cell_call(self, row, col): + def cell_call(self, row, col, **kwargs): """the one line view for an entity: linked text view """ entity = self.cw_rset.get_entity(row, col)