{% extends "djstripe/base.html" %} {% block title %}Cancel Subscription{% endblock title %} {% block content %}

Cancel Subscription

{% if not customer.subscription %}

You have no subscription on file.

{% elif customer.subscription.status == customer.subscription.STATUS_CANCELED %}

Your subscription has already been canceled.

{% elif customer.subscription.is_status_temporarily_current %}

Your subscription has already been canceled.

However, you can still use the site for another {{ customer.subscription.current_period_end|timeuntil }}.

{% else %}

Are you sure you want to cancel your subscription?

{% block cancellation_ramifications %}

What you lose by cancelling your subscription:

{% endblock cancellation_ramifications %}

Are you sure you want to cancel?

{% csrf_token %}
{% endif %}
{% endblock content %}