diff --git a/ietf/templates/nomcom/feedback.html b/ietf/templates/nomcom/feedback.html index 4ef18fc5f..effacdf67 100644 --- a/ietf/templates/nomcom/feedback.html +++ b/ietf/templates/nomcom/feedback.html @@ -36,13 +36,13 @@
{% for np in p.nomineeposition_set.accepted.not_duplicated %} - {{ np.nominee.name }} - - {{ count | default:"0" }} + + {{ count }} {% endwith %} @@ -55,13 +55,13 @@
{% for t in topics %} - {{ t.subject }} - {% with count=topic_counts|lookup:t.id %} - - {{ count | default:"0" }} + {% with count=topic_counts|lookup:t.id|default:0 %} + + {{ count }} {% endwith %} @@ -109,4 +109,4 @@
{% endif %} -{% endblock %} +{% endblock %} \ No newline at end of file