{% extends "base.html" %} {% load i18n static core_tags %} {% block bodyextraclass %}pure-window{% endblock bodyextraclass %} {% block header %} {% endblock header %} {% block breadcrumbs_wrapper %} {% endblock breadcrumbs_wrapper %} {% block container %}
{% include 'voters/includes/voting_help.html' %}
{% block voting_steps %} {% trans 'Step 1: Select election' as tabtitle %} {% include 'voters/includes/voting_tabs.html' with title=object tab='step1' tabtitle=tabtitle only %}

{% blocktrans with elections=elections.count elections_active=elections_active_count %} You have {{ elections_active }}/{{ elections }} elections at polling state. Click on "vote" to proceed. {% endblocktrans %}

{% for election in elections %} {% if forloop.counter0|divisibleby:3 %}
{% endif %}

{{election.identifier}}

{{election.description}}

{% trans 'Voting period' %}:

{{election.voting_begin_date}}
{{election.voting_end_date}}
{% if election.is_closed %} {% trans 'Vote' %} {% else %} {% trans 'Vote' %} {% endif %}
{% if forloop.counter|divisibleby:3 %}
{% endif %} {% endfor %}
{% endblock voting_steps %}
{% endblock container %} {% block footer %} {% endblock footer %} {% block extrajs %} {% endblock extrajs %}