{% load i18n %} {% load humanize %} {% load staticfiles %}
{% if poll.has_votes %} {% with poll.get_options.0 as option %}
{% trans 'Yes' %}: |
{{ option.Yes }} |
{% trans 'No' %}: |
{{ option.No }} |
{% trans 'Abstention' %}: |
{{ option.Abstain }} |
{% trans 'Valid votes' %}: |
{{ poll.print_votesvalid }} |
{% trans 'Invalid votes' %}: |
{{ poll.print_votesinvalid }} |
{% trans 'Votes cast' %}: |
{{ poll.print_votescast }} |