From a78ab01230384bac5d762e91a41cc62e87f69f02 Mon Sep 17 00:00:00 2001 From: Joseph Spiros Date: Wed, 14 Jul 2010 23:05:36 -0400 Subject: [PATCH] Fixed the node_url templatetag's generation of URLs. --- templatetags/nodes.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 -- 2.20.1