{% extends "payments/base.html" %} {% block title %}Accounts Dashboard{% endblock title %} {% block content %} {{ block.super }}

Account Information

Credit Card on file. Show Card Manage Credit Card

{% if plans %} {# Show available plans #}

Subscription

{% include "djstripe/includes/_subscription_status.html" %}

Next billed on {{ subscription.current_period_end|date }}.
Payment History

{% for plan in plans %} {% endfor %}
Plan Interval Description
{{ plan.name }} {{ plan.interval.title }}ly {{ plan.description }} {% if plan.plan == subscription.plan %} Your plan {% else %} Not your plan {% endif %}
{% else %} {# No plans so just show payment history #} {% include "djstripe/includes/_history_table.html" %} {% endif %}
{% endblock content %} {% block javascript %} {{ block.super }} {% if not plans %} {% endif %} {% endblock javascript %}