{% extends "base.html" %} {% block title %}Election administration{% endblock %} {%block tag %}admin{% endblock %} {% block body %}

Election administration

{% if elections %} {% for election in elections %} {% endfor %}
Election Start date (UTC) End date (UTC) Status
{{ election.summary }} {{ election.start_date }} {{ election.end_date }} {{ election.status }}
{% else %}

No elections present in the database

{% endif %} {%endblock %}