{% extends "base.html" %} {% block body %} {% if num_elections > 0 %}

{{ title }}

{% for election in elections %} {% endfor %}
Election Start date (UTC) End date (UTC) Status
{{ election.summary }} {{ election.start_date }} {{ election.end_date }} {{ election.status }} {% if election.status == "In progress" %} {% if g.fas_user %} Vote now! {% endif %} {% endif %}
{% endif %} {% endblock %}