{% if metrics.total_votes == 0 %}

No voting data available for this showreel yet.

{% else %}

Total votes: {{ metrics.total_votes }}

Positive votes: {{ metrics.positive_votes }}

Negative votes: {{ metrics.total_votes - metrics.positive_votes }}


{% endif %}
{% for entry in metrics.results %}

{{ entry.game }}

Category: {{ showreel.title }}

Author: {{ entry.author_name }}

Vote sum: {{ entry.vote_sum }}

Votes received: {{ entry.vote_count }}

{% endfor %}