{% load i18n %} {% for option in poll.options.all %} {% if forloop.first or not forloop.counter|divisibleby:2 %}
{% endif %}
{{ option.text }}
{{ option.percentage|floatformat }}%
{% if forloop.last or forloop.counter|divisibleby:2 %}
{% endif %} {% endfor %} {% trans "Total votes:" %} {{ poll.votes|length }}