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

Zusatz-Abos ändern

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


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 %}