{% extends "payments/base.html" %} {% load url from future %} {% block title %}Purchase a Subscription{% endblock title %} {% block body %} {% with request.user.customer.current_subscription as subscription %} {% if not subscription or subscription.status != 'active' %} {% include "payments/_subscription_status.html" %} {% include "payments/_subscribe_form.html" %} {% else %}
You currently already have an active subscription, which will automatically renew in {{ subscription.current_period_end|timeuntil }}. If you like, you can view your payment history, change your card or change your subscription.
{% endif %} {% endwith %} {% endblock %}