{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{{ block.super }} – {% trans "Elections" %}{% endblock %} {% block header %} {% endblock %} {% block javascript %} {% endblock %} {% block content %}

{% trans "Elections" %} {% if perms.assignment.can_manage_assignment %} {% trans "New" %} {% endif %} {% if perms.assignment.can_see_assignment %} PDF {% endif %}

{% for assignment in assignments %} {% endfor %}
{% trans "Election" %} {% trans "Candidates" %} {% trans "Status" %} {% trans "Actions" %}
{{ assignment }} {% trans "Posts" context "Number of searched candidates for an election" %}: {{ assignment.posts }} {% if assignment.status != 'fin' %} | {% trans "Candidates" %}: {{ assignment.get_participants|length }} {% endif %} | {% trans "Elected" %}: {{ assignment.elected|length }} {{ assignment.get_status_display }} {% if perms.projector.can_manage_projector %} {% endif %} {% if perms.assignment.can_manage_assignment %} {% endif %} PDF
{% endblock %}