{% load i18n %}

{{ poll.question }}

{% if not is_poll_voted %} {% endif %}
{% for choice in poll.choices.all %}

{{ choice.value }} - {{ choice.votes }} ({{ choice.percent }}%)

{% endfor %}