{% extends 'admin/change_form.html' %} {% block content %}

Current Results

This only counts valid votes; there are {{ original.invalid_votes }} invalid votes.

{% if original.can_abstain %}

Abstentions are counted as votes, but are not counted in the total.

{% endif %}

Yes: {{ original.yes_votes }}
No: {{ original.no_votes }} {% if original.can_abstain %}
Abstain: {{ original.abstentions }} {% endif %}

Total: {{ original.total_votes }}

{{ block.super }} {% endblock %}