{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% trans "Polls: Viewing Results" %}{% endblock %} {% block bodyclass %}menu-poll{% endblock %} {% block content %}

{% blocktrans %}{{poll}} - Total Votes {{total_votes}}{% endblocktrans %}

{% for question in poll.questions.all %} {% endfor %}
Question Votes

{{question}}

{{question.votes.all.count}}
{% endblock %}