{% extends "base.html" %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}

Vendor Subscription Test Interface

{% if current_subscription %}

Current Subscription

Plan: {{ current_subscription.plan.name }}

Status: {{ current_subscription.status }}

Expires: {{ current_subscription.end_date }}

{% endif %}

Available Plans

{% for plan in subscription_plans %}
{% endfor %}

Test Cards

Success: {{ test_cards.success.number }}
3D Secure: {{ test_cards.authentication_required.number }}
Decline: {{ test_cards.decline.number }}
Use any future expiry date and any 3 digits for CVC
{% endblock %}