Skip to content

Commit 2922495

Browse files
committed
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
1 parent 8442eb3 commit 2922495

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/community/templatetags/community_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def get_user_managed_lists(parser, token):
5252
@register.inclusion_tag('community/display_field.html', takes_context=False)
5353
def show_field(field, doc):
5454
return {'field': field,
55-
'value': field().get_value(doc),
55+
'value': field.get_value(doc),
5656
}
5757

5858

0 commit comments

Comments
 (0)