From 7121ad86d14b3c67423c99e7503cee6b647d1b6d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 7 Nov 2011 02:08:45 -0400 Subject: [PATCH] Removed tag count from the widget to conserve vertical space --- apps/tags/widgets.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/tags/widgets.py b/apps/tags/widgets.py index d201516255..ab1b6762b1 100644 --- a/apps/tags/widgets.py +++ b/apps/tags/widgets.py @@ -10,8 +10,6 @@ def get_tags_inline_widget(document): tag_count = document.tags.count() if tag_count: tags_template.append(u'
') - tags_template.append(u'
%(tag_string)s: %(tag_count)s
' % { - 'tag_string': _(u'Tags'), 'tag_count': tag_count}) for tag in document.tags.all(): tags_template.append(u'' % (tag.tagproperties_set.get().get_color_code(), tag.name))