{% extends "base.html" %} {% load i18n %} {% load config %} {% block all_page_title %} {% vocabulary "subscription" as v_subscription %}

{% blocktrans %}Zusammenfassung{% endblocktrans %}

{% endblock %} {% block allcontent %} {% config "organisation_name" as c_organisation_name %} {% config "share_price" as c_share_price %} {% config "currency" as c_currency %} {% vocabulary "member_type" as v_member_type %} {% vocabulary "member_type_pl" as v_member_type_pl %} {% vocabulary "co_member_pl" as v_co_member_pl %} {% vocabulary "subscription" as v_subscription %} {% vocabulary "subscription_pl" as v_subscription_pl %} {% config "enable_shares" as c_enable_shares %}

{% trans "Personalien" %} {% if not main_member.pk %}{% endif %}

{{ main_member.first_name }} {{ main_member.last_name }}
{{ main_member.addr_street }}
{{ main_member.addr_zipcode }} {{ main_member.addr_location }}
{% trans 'E-Mail' %}: {{ main_member.email }}
{% trans 'Telefon' %}: {{ main_member.phone }}
{% trans 'Mobil' %}: {{ main_member.mobile_phone|default:'-' }}
{% trans 'Geburtstag' %}: {{ main_member.birthday|default:'-' }}

{{ v_subscription }}

{% for type, amount in subscriptions.items %} {%blocktrans trimmed with tn=type.name tp=type.price%} {{ amount }}× {{ tn }} à {{ c_currency }} {{ tp }}/Jahr {%endblocktrans%} {% if not forloop.last %}
{% endif %} {% endfor %} {% if subscriptions|length == 0 %} {%blocktrans%}Keine {{ v_subscription_pl }}{%endblocktrans%} {% endif %}

{% if subscriptions|length > 0 %}

{% trans "Depot" %}

{{ depot.name }}
{% trans 'Abholung jeweils am' %} {{ depot.weekday_name }} {% if depot.addr_street %}
{{ depot.addr_street }}{% endif %} {% if depot.addr_zipcode or depot.addr_location %}
{{ depot.addr_zipcode }} {{ depot.addr_location }}{% endif %}

{% trans "Gewünschtes Startdatum" %}

{{ start_date }}

{{ v_co_member_pl }}

{% for co_member in co_members %}

{{ co_member.first_name }} {{ co_member.last_name }} {% if not co_member.pk %}{% endif %}
{{ co_member.addr_street }}
{{ co_member.addr_zipcode }} {{ co_member.addr_location }}
{% trans 'E-Mail' %}: {{ co_member.email }}
{% trans 'Telefon' %}: {{ co_member.phone }}
{% trans 'Mobil' %}: {{ co_member.mobile_phone|default:'-' }}
{% trans 'Geburtstag' %}: {{ co_member.birthday|default:'-' }}

{% endfor %}

{% if co_members|length > 0 %} {% blocktrans %}Weitere {{ v_co_member_pl }} hinzufügen{% endblocktrans %} {% else %} {% blocktrans %}{{ v_co_member_pl }} hinzufügen{% endblocktrans %} {% endif %}

{% endif %} {% if c_enable_shares %}

{% trans "Anteilscheine" %}

{{ main_member.first_name }} {{ main_member.last_name }}: {{ main_member.new_shares|default:'Keine' }} {% for co_member in co_members %}
{{ co_member.first_name }} {{ co_member.last_name }}: {{ co_member.new_shares|default:'Keine' }} {% endfor %}

{% blocktrans %}Zu je einmalig {{ c_currency }} {{ c_share_price }}{% endblocktrans %}

{% endif %}
{% csrf_token %}
{% trans "Abbrechen" %}
{% endblock %}