X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/da63b5b1fdcd03f375ff6b40a1d022d4e8778801..36f395364e4467720c550c829d1bfec2e9da5d5f:/models.py diff --git a/models.py b/models.py index 6be9951..b66c4c3 100644 --- a/models.py +++ b/models.py @@ -220,10 +220,10 @@ class InheritableTreeEntity(TreeEntity): 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) @@ -283,9 +283,6 @@ class Redirect(Node): response = HttpResponseRedirect(self.target) response.status_code = self.status_code return response - - def __unicode__(self): - return self.slug class File(Node):