{% extends "beamer.html" %} {% block title %}{{ block.super }} - {{ item.title }}{% endblock %} {% block content %} {% trans "Election" %}:
{% trans "Candidates" %} | {% for poll in item.assignment.poll_set.all %}|
---|---|
{% with vote|first as candidate %} {{ candidate.0 }} {% if candidate.1 %} {% trans 'not elected' %} {% else %} {% trans 'elected' %} {% endif %} {% endwith %} | {% for v in vote|last %}{% if v %}
{% if v|length == 3 %}
{% if v.0 %}{{ v.0 }}{% else %}∅{% endif %} {% if v.1 %}{{ v.1 }}{% else %}∅{% endif %} {% if v.2 %}{{ v.2 }}{% else %}∅{% endif %} {% else %} {% if v != "-" %}{% endif %} {{ v }} {% endif %} {% else %}∅{% endif %} |
{% endfor %}
{% trans "No ballots available." %} |