{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% load tags %} {% block title %}{% trans 'Topicvoting' %} – {% trans 'Results' %} – {{ block.super }}{% endblock %} {% block content %}

{% trans 'Results' %} {% trans 'Back to overview' %} {% trans 'Print all results' %}

{% trans 'Winning topics' %}

{% trans 'Result table' %}

{% for divisor in divisors %} {% endfor %} {% for row in result_table %} {% if row.0 %} {% for hoechstzahl in row %} {{ hoechstzahl.topic.get_title_with_votes }}
{{ hoechstzahl.value|floatformat:2 }} {% endfor %}
{% endif %} {% endfor %}
{% trans 'Divisor' %}{{ divisor }}
{{ row.0.topic.category }} ({{ row.0.topic.category.get_votes_string }})
{% if topic_post_warning %}

{% trans 'Attention: There are less topics than posts.' %}

{% endif %} {% if runoff_poll_warning %}

{% trans 'Attention: There is a runoff poll necessary.' %}

{% endif %} {% endblock %}