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

{% trans "Zusatzabos ändern" %}

{% endblock %} {% block content %} {% vocabulary "subscription_pl" as v_subscription_pl %} {% if extras|length == 0 %} {% trans "Du hast noch keine Zusatzabos" %} {% else %} {% trans "Übersicht" %}
{% for extra in extras %} {% endfor %}
{% trans "Abo" %} {% trans "Status" %}
{{ extra.type.name }} {{ extra.state_text }} {% if not extra.canceled and extra.deactivation_date is None and extra.can_cancel %} {% trans "kündigen" %} {% endif %}
{% endif %} {% if extra_order_allowed %}
{% trans "Zusatzabos bestellen" %}
{% csrf_token %}
{% for type in types %}
{{ type.name }}
{{ type.description|linebreaksbr|urlize }}
{% for period in type.periods.all %} {{ period.start_day }}.{{ period.start_month }}. - {{ period.end_day }}.{{ period.end_month }}. {{ period.price }} {% config "currency" %}
{% endfor %}
{% endfor %}
{% else %}
{% blocktrans %}Für gekündigte {{ v_subscription_pl }} können keine Zusatzabos bestellt werden.{% endblocktrans %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}