{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Elections - {% endblock %} {% block elections_active %} class="active" {% endblock %} {% block content %}
{% if election_positions %} {% for election_position in election_positions %} {% endfor %}
Name Order Num Votes
{{ election_position.name }} {{ election_position.order }} {{ election_position.num_votes }}
{% else %}

There are no election positions.

{% endif %}

< Back to Elections Admin

{% endblock %}