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

Cancel Subscription

{% if not customer.current_subscription %}

You have no subscription on file.

See your account status or better yet, subscribe.

{% elif customer.current_subscription.status == customer.current_subscription.STATUS_CANCELLED %}

Your subscription has already been canceled.

See your account status or better yet, get a fresh subscription.

{% elif customer.current_subscription.is_status_temporarily_current %}

Your subscription has already been canceled.

However, you can still use the site for another {{ customer.current_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 %} I change my mind!
{% endif %}
{% endblock content %}