{% if poll.question %}
{{ poll.question }}
{% endif %}
{% if poll.can_voted %} {% for variant in poll.variants %}
{{ variant.ansver }}
{% endfor %}
{% endif %}
{% for variant in poll.variants %}
{{ variant.ansver }}
{{ variant.votes }}
{{ variant.percentage }} %
{% endfor %}