[primary] use a new rtypevid flag in primary view display controller, allowing to tell the view for a non final relation should be called as an attribute view (eg, not on the target rset)
--- a/web/views/primary.py Wed Aug 04 11:23:19 2010 +0200
+++ b/web/views/primary.py Fri Aug 06 17:32:43 2010 +0200
@@ -129,7 +129,7 @@
display_attributes = []
for rschema, _, role, dispctrl in self._section_def(entity, 'attributes'):
vid = dispctrl.get('vid', 'reledit')
- if rschema.final or vid == 'reledit':
+ if rschema.final or vid == 'reledit' or dispctrl.get('rtypevid'):
value = entity.view(vid, rtype=rschema.type, role=role)
else:
rset = self._relation_rset(entity, rschema, role, dispctrl)