{% load i18n %}
{% load juntagrico.config %}
{% vocabulary "assignment_pl" as v_assignment_pl %}
{% vocabulary "co_member_pl" as v_co_member_pl %}
{{ v_assignment_pl }}
{% vocabulary "subscription" as v_subscription %}
{% blocktrans trimmed with ra=subscription.required_assignments|floatformat:-1 rca=subscription.required_core_assignments|floatformat:-1 %}
Benötigt für diese/n/s {{ v_subscription }}: {{ ra }}
{% endblocktrans %}
{% if subscription.required_core_assignments %}
{% blocktrans trimmed with rca=subscription.required_core_assignments|floatformat:-1 %}
(Davon {{ rca }} in Kernbereichen)
{% endblocktrans %}
{% endif %}
{% blocktrans trimmed with mac=subscription.member_assignment_count|floatformat:-1 %}
Du hast selbst {{ mac }} gemacht oder geplant
{% endblocktrans %}
{% if subscription.required_core_assignments %}
{% blocktrans trimmed with mcac=subscription.member_core_assignment_count|floatformat:-1 %}
(Davon {{ mcac }} in Kernbereichen)
{% endblocktrans %}
{% endif %}
{% if co_members %}
{% blocktrans trimmed with ac=subscription.assignment_count|floatformat:-1 %}
Zusammen mit deinen {{ v_co_member_pl }} hast du {{ ac }} gemacht oder geplant
{% endblocktrans %}
{% if subscription.required_core_assignments %}
{% blocktrans trimmed with cac=subscription.core_assignment_count|floatformat:-1 %}
(Davon {{ cac }} in Kernbereichen)
{% endblocktrans %}
{% endif %}