{% extends "base.html" %} {% load jcr.common %} {% load i18n %} {% load juntagrico.common %} {% load juntagrico.config %} {% block page_title %}

{% translate "Beitragsrunde:" %} {{ round.name }}

{% endblock %} {% block content %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% config "currency" as c_currency %}

Status

{% if round.status == round.STATUS_ACTIVE %}

{% blocktrans trimmed %} Beitragsrunde ist aktiv. {% endblocktrans %}

{% csrf_token %}
{% elif round.status == round.STATUS_DRAFT %}

{% blocktrans trimmed %} Beitragsrunde ist nicht veröffentlicht. {% endblocktrans %}

{% if round.can_activate %}
{% csrf_token %}
{% endif %}
{% elif round.status == round.STATUS_CLOSED %}

{% blocktrans trimmed %} Beitragsrunde geschlossen. {% endblocktrans %}

{% csrf_token %}
{% if bill_transfer_form.enabled and perms.juntagrico_billing.change_billitem %}

{% blocktrans trimmed %} Die Gebote können nun in die Rechnungen übertragen werden. Dafür müssen die Rechnungen schon generiert worden sein. Die Zuordnung zu einem Rechnungselement-Typ is optional. {% endblocktrans %}

{% csrf_token %} {{ bill_transfer_form }}
{% endif %} {% endif %}

Fortschritt

{% blocktrans trimmed with v_subscription_pl=vocabulary.subscription_pl %} Wie viele der {{ v_subscription_pl }} haben schon geboten? {% endblocktrans %}
{% with progress=round.submitted|percent:round.subscriptions.count %}
{{ progress|floatformat:-1 }}%
{% endwith %}
{% blocktrans %}Welche Option wurde gewählt?{% endblocktrans %}
{% for option in round.options.all %} {% with selection_count=option.valid_selections.count %}
{{ option }}
{{ selection_count|percent:round.submitted|floatformat:-1 }}%
{% endwith %} {% endfor %} {% if round.other_amount %} {% with other_amount_count=round.other_amounts.count %}
{% trans "Anderer Betrag" %}
{{ other_amount_count|percent:round.submitted|floatformat:-1 }}%
{% endwith %} {% endif %}
{% if round.other_amount %} {% blocktrans %}Durchschnittliche Erhöhung bei "Anderer Betrag":{% endblocktrans %} {{ round.other_amounts_average_increase|floatformat:"2g" }} % {% endif %}
Gebote ansehen

Bilanz

{% blocktrans %}Zielbetrag:{% endblocktrans %} {{ c_currency }} {{ round.effective_target_amount|floatformat:"2g" }}

{% blocktrans %}Summe aller Gebote:{% endblocktrans %} {{ c_currency }} {{ round.total_selected|floatformat:"2g" }}

{% blocktrans trimmed with v_subscription_pl=vocabulary.subscription_pl %} {{ v_subscription_pl }} ohne Gebot: {% endblocktrans %} {{ c_currency }} {{ round.total_unselected|floatformat:"2g" }}

{% blocktrans %}Total:{% endblocktrans %} {{ c_currency }} {{ round.current_total|floatformat:"2g" }} ({{ round.current_total|percent:round.effective_target_amount|floatformat:-1 }}%)

{% with percentage=round.total_selected|percent:round.effective_target_amount %}
{{ percentage|floatformat:-1 }}%
{% endwith %} {% with percentage=round.total_unselected|percent:round.effective_target_amount %}
{{ percentage|floatformat:-1 }}%
{% endwith %}
{% endblock %}