{% extends template_extends %} {% load i18n %} {% load currency_filters %} {% block subscriptions_styles %} {% endblock %} {% block content %}

Cancel subscription?

{% trans "Subscription" %}
{% trans "Payment details" %}
{% trans "Last billing date" %}
{% trans "Next billing date" %}
{% trans "Subscription" %} {{ subscription.subscription.plan }}
{% trans "Payment details" %} {{ subscription.subscription.cost|currency }} {{ subscription.subscription.display_billing_frequency_text }}
{% trans "Last billing date" %} {% if subscription.date_billing_last %} {{ subscription.date_billing_last|date:"Y-m-d H:i" }} {% else %} N/A {% endif %}
{% trans "Next billing date" %} {% if subscription.date_billing_next %} {{ subscription.date_billing_next|date:"Y-m-d H:i" }} {% else %} N/A {% endif %}
{% csrf_token %}
{% endblock %}