{% extends "management_lists/man_list_base.html" %} {% load i18n %} {% load juntagrico.common %} {% load juntagrico.config %} {% block page_title %}

{% vocabulary "assignment_pl" %}

{% endblock %} {% block management_cmd %} {% include 'management_lists/snippets/email_sender.html' %}
{% endblock %} {% block list %} {% show_core as b_show_core %} {% requires_core as b_requires_core %} {% vocabulary "assignment_pl" as v_assignment_pl %} {% vocabulary "subscription" as v_subscription %} {% if b_show_core and b_requires_core %} {% endif %} {% for subscription in management_list %} {% with other_recipients=subscription.other_recipients %} {% if b_show_core and b_requires_core %} {% endif %} {% endwith %} {% endfor %}
{% trans "BezieherInnen" %} {% trans "Startdatum" %} {% blocktrans %}{{ v_subscription }}-Status{% endblocktrans %} {% vocabulary "assignment_pl" %} {% blocktrans %}{{ v_assignment_pl }} benötigt{% endblocktrans %} {% blocktrans %}{{ v_assignment_pl }} Status{% endblocktrans %} {% blocktrans %}{{ v_assignment_pl }} Kernbereich{% endblocktrans %} {% blocktrans %}{{ v_assignment_pl }} Kernbereich benötigt{% endblocktrans %} {% blocktrans %}{{ v_assignment_pl }} Kernbereich Status{% endblocktrans %} {% trans "Emails" %}
{% spaceless %} {{ subscription.primary_member }} {% endspaceless %} {% with phone=subscription.primary_member.get_phone %} {{ phone }} {% endwith %} {% for recipient in other_recipients %}
{{ recipient }} {% with phone=recipient.get_phone %} {{ phone }} {% endwith %}
{% endfor %}
{{ subscription.activation_date|date:"Y-m-d" }} {{ subscription.state_text }} {% if subscription.canceled %} - {% blocktrans with cd=subscription.cancellation_date|date:"Y-m-d" %} Gekündigt am {{cd}} {% endblocktrans %} {% endif %} {{ subscription.assignment_count|floatformat:-2 }} {{ subscription.required_assignments|floatformat:0 }} {{ subscription.assignments_progress|floatformat:0 }}% {{ subscription.core_assignment_count|floatformat:-2 }} {{ subscription.required_core_assignments|floatformat:0 }} {{ subscription.core_assignments_progress|floatformat:0 }}%
{% endblock %} {% block scripts %} {{ block.super }} {% endblock %}