- def render_to_response(self, node, request, path=None, subpath=None):
+ def get_subpath(self, obj):
+ raise ViewDoesNotProvideSubpaths
+
+ def attributes_with_node(self, node):
+ return QuerySetMapper(self.attribute_set, passthrough=node.attributes)
+
+ def relationships_with_node(self, node):
+ return QuerySetMapper(self.relationship_set, passthrough=node.relationships)
+
+ def render_to_response(self, node, request, path=None, subpath=None, extra_context=None):