diff --git a/helpdesk/templates/helpdesk/kb_category.html b/helpdesk/templates/helpdesk/kb_category.html index d782ae9e..302f084c 100644 --- a/helpdesk/templates/helpdesk/kb_category.html +++ b/helpdesk/templates/helpdesk/kb_category.html @@ -26,7 +26,13 @@ {% blocktrans with item.get_absolute_url as url %}View Answer {% endblocktrans %}

-

{% trans 'Rating' %}: {{ item.score }}

+

{% trans 'Rating' %}: + {% if item.votes > 0 %} + {{ item.score|floatformat }}/10 + {% else %} + {% trans 'no score yet' %} + {% endif %} +

{% trans 'Last Update' %}: {{ item.last_updated|naturaltime }}