{% extends "master.html" %} {% block title %} {{ super() }} {% endblock %} {%block tag %}elections{% endblock %} {% block content %}

Elections

Listed here are all the elections that are taking or took place.

{% for election in elections %} {% endfor %}
Name Year Open Published
{{ election.election_name }} {{ election.election_year }} {% if election.election_open %} Election open {% else %} Election open {% endif %} {% if election.election_public %} Election published {% else %} Election closed {% endif %}
{% endblock %}