{% extends "base.html" %} {% block title %}Election Information{% endblock %} {% block body %}

{{ election.shortdesc }}

{{ election.description }}

{% if election.url %}

[More Information]

{% endif %} {% if election.status == 'Ended' %} Show Results! {% endif %} {% for candidate in election.candidates %} {% endfor %}
{% if election.candidates_are_fasusers %} {{ usernamemap[candidate.id] }} {% else %} {{ candidate.name }} {% endif %} {% if candidate.url %} [info] {% endif %}
{% if election.legal_voters.count() != 0 %}

To vote in this election you must be a member of any one of the following groups:

{% else %}

{% endif %} {% endblock %}