{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Election Votes - {% endblock %} {% block elections_active %} class="active" {% endblock %} {% block content %}
{% if election_positions %} {% for position in election_positions %}

{{ position }}

{% if position.get_approved_candidates %} {% for candidate in position.get_approved_candidates %}
{{ candidate.get_vote_count }} Vote{% if candidate.get_vote_count != 1 %}s{% endif %} ({{ candidate.get_vote_percentage|floatformat }}%)
{% endfor %} {% else %}

No Candidates for this position.

{% endif %} {% endfor %} {% endif %}

< Back to Elections Admin

{% endblock %}