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

Election: {{ election.election_name }} - {{ election.election_year }}

Below are presented all the candidates of this election.

Click on the picture to get a larger version of the image.

{% if election.election_open and can_vote %}

Vote now!

{% endif %} {% if candidates %} {% for candidate in candidates %} {% if loop.index % 3 == 0 %} {% endif %} {% endfor %}
img {{ candidate.candidate_file }} Author: {{ candidate.candidate_author }}
{% else %}

No candidate have been registered for this election (yet).

{% endif %} {% endblock %}