{% 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.canceled_at and customer.current_subscription.start < customer.current_subscription.canceled_at %}

Your subscription was already cancelled.

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

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