return None
def get_path(self, pathsep='/', field='slug'):
- path = getattr(self.instance, field, '?')
+ path = getattr(self.instance, field, getattr(self.instance, 'slug', '?'))
parent = self.parent
while parent:
- path = getattr(parent.instance, field, '?') + pathsep + path
+ path = getattr(parent.instance, field, getattr(parent.instance, 'slug', '?')) + pathsep + path
parent = parent.parent
return path
path = property(get_path)
response = HttpResponseRedirect(self.target)
response.status_code = self.status_code
return response
-
- def __unicode__(self):
- return self.slug
class File(Node):
response = HttpResponse(wrapper, content_type=self.mimetype)
response['Content-Length'] = self.file.size
return response
-
- def __unicode__(self):
- return self.file
class Template(TreeModel):