From 2922495e65785e31a9bce207ae64d49be55dde8a Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Fri, 10 Jan 2014 14:50:17 +0000 Subject: [PATCH] Fix bug in community list, the show_field templatetag is now getting the fields already instantiated while the tag was expecting to instantiate them - Legacy-Id: 7099 --- ietf/community/templatetags/community_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/community/templatetags/community_tags.py b/ietf/community/templatetags/community_tags.py index 639b9eb87..1797bb99b 100644 --- a/ietf/community/templatetags/community_tags.py +++ b/ietf/community/templatetags/community_tags.py @@ -52,7 +52,7 @@ def get_user_managed_lists(parser, token): @register.inclusion_tag('community/display_field.html', takes_context=False) def show_field(field, doc): return {'field': field, - 'value': field().get_value(doc), + 'value': field.get_value(doc), }