{% extends "base.html" %} {% block content %} {#

Elections by id

Below is a list of elections hosted at this website:

    {% for entry in election_list %}
  1. {{ entry.title or entry.id }} {% if entry.taglist and entry.taglist|length > 0 %} [ tags: {% for tag in entry.taglist %} {{ tag }}{% if not loop.last %}, {% endif %} {% endfor %} ] {% endif %}
  2. {% endfor %}
#} {% include 'election-list-snippet.html' %}

In addition to the above elections, one may return to the /awt homepage and enter an ABIF-formatted election.

{% endblock content %}