diff --git a/helpdesk/templates/helpdesk/kb_item.html b/helpdesk/templates/helpdesk/kb_item.html
index 6c127e03..73b19a6f 100644
--- a/helpdesk/templates/helpdesk/kb_item.html
+++ b/helpdesk/templates/helpdesk/kb_item.html
@@ -29,7 +29,12 @@
- {% blocktrans with item.recommendations as recommendations %}Recommendations: {{ recommendations }}{% endblocktrans %}
- {% blocktrans with item.votes as votes %}Votes: {{ votes }}{% endblocktrans %}
- - {% blocktrans with item.score|floatformat as score %}Overall Rating: {{ score }}{% endblocktrans %}/10
+ - {% trans 'Rating' %}:
+ {% if item.votes > 0 %}
+ {{ item.score|floatformat }}/10
+ {% else %}
+ {% trans 'no score yet' %}
+ {% endif %}