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

{% trans "Zusatz-Abos ändern" %}

{% endblock %} {% block content %} {% trans "Übersicht" %}
{% for extra in extras %} {% endfor %}
{% trans "Abo" %} {% trans "Status" %}
{{ extra.type.name }} {{ extra.state }} {% if not extra.canceled and extra.deactivation_date is None and extra.can_cancel %} {% trans "kündigen" %} {% endif %}


{% trans "Extra-Abos bestellen" %}

{% csrf_token %}
{% for type in types %}
{{ type.name }}
{{ type.description }}
{% for period in type.periods.all %} {{ period.start_day }}.{{ period.start_month }}. - {{ period.end_day }}.{{ period.end_month }}. {{ period.price }} {% config "currency" %}
{% endfor %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}