{% if votes %}
{% for vote in votes %}
{{ vote[2] }}
{% if vote[1] == 1 %}
{{ vote[1] }} vote
{% else %}
{{ vote[1] }} votes
{% endif %}
{% endfor %}
{% endif %}