diff --git a/app/templates/macros/reviews.html b/app/templates/macros/reviews.html index bb6b6626..3a2debd9 100644 --- a/app/templates/macros/reviews.html +++ b/app/templates/macros/reviews.html @@ -6,12 +6,16 @@ {{ _("Helpful") }} - {{ positive }} + {% if positive > 0 %} + {{ positive }} + {% endif %} {{ _("Unhelpful") }} - {{ negative }} + {% if negative > 0 %} + {{ negative }} + {% endif %}