diff -r 5594aadb740e -r 6cb91be7707f web/views/schema.py --- a/web/views/schema.py Wed Mar 24 08:40:21 2010 +0100 +++ b/web/views/schema.py Wed Mar 24 08:42:49 2010 +0100 @@ -247,7 +247,7 @@ self.w(u'

%s

' % _('Relations')) rset = self._cw.execute( 'Any R,C,TT,K,D,A,RN,TTN ORDERBY RN ' - 'WHERE A is CWRelation, A description D, A composite K?, ' + 'WHERE A is CWRelation, A description D, A composite K, ' 'A relation_type R, R name RN, A to_entity TT, TT name TTN, ' 'A cardinality C, A from_entity S, S eid %(x)s', {'x': entity.eid}) @@ -255,7 +255,7 @@ displaycols=range(6), mainindex=5) rset = self._cw.execute( 'Any R,C,TT,K,D,A,RN,TTN ORDERBY RN ' - 'WHERE A is CWRelation, A description D, A composite K?, ' + 'WHERE A is CWRelation, A description D, A composite K, ' 'A relation_type R, R name RN, A from_entity TT, TT name TTN, ' 'A cardinality C, A to_entity O, O eid %(x)s', {'x': entity.eid})