X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/a991afcc5a1f18bbe332359f2c3c10be0ca2a11e..a78ab01230384bac5d762e91a41cc62e87f69f02:/templatetags/nodes.py diff --git a/templatetags/nodes.py b/templatetags/nodes.py index 3be8194..0cb2289 100644 --- a/templatetags/nodes.py +++ b/templatetags/nodes.py @@ -28,10 +28,13 @@ class NodeURLNode(template.Node): node = context['node'] current_site = Site.objects.get_current() if node.has_ancestor(current_site.root_node): - url = node.get_path(root=current_site.root_node) + url = '/' + node.get_path(root=current_site.root_node) if self.with_obj: with_obj = self.with_obj.resolve(context) - url += node.view.get_subpath(with_obj) + subpath = node.view.get_subpath(with_obj) + if subpath[0] is '/': + subpath = subpath[1:] + url += subpath else: return settings.TEMPLATE_STRING_IF_INVALID