From b66e996b39562e68edf0cc8282cbbd2f4581e741 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 1 May 2011 15:32:19 -0400 Subject: [PATCH] Show tagget document link in the tags subtemplate of documents --- apps/tags/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/tags/utils.py b/apps/tags/utils.py index 817f693440..9496d9e88e 100644 --- a/apps/tags/utils.py +++ b/apps/tags/utils.py @@ -1,6 +1,6 @@ from django.utils.translation import ugettext_lazy as _ -from tags import tag_document_remove +from tags import tag_document_remove, tag_tagged_item_list def get_tags_subtemplate(obj): @@ -14,6 +14,6 @@ def get_tags_subtemplate(obj): 'title': _(u'tags'), 'object_list': obj.tags.all(), 'hide_link': True, - 'navigation_object_links': [tag_document_remove], + 'navigation_object_links': [tag_tagged_item_list, tag_document_remove], } }