{% extends "terminusgps_payments/layout.html" %} {% partialdef main %} {% if messages %} {% endif %}
{% for payment in response.profile.paymentProfiles %}
{{ payment.payment.creditCard.cardNumber }} {{ payment.payment.creditCard.expirationDate }}
{% empty %}

You don't have any saved payment profiles.

{% endfor %}
{% for shipping in response.profile.shipToList %}
{{ shipping.address }}
{% empty %}

You don't have any saved shipping profiles.

{% endfor %}
{% for subscription in response.subscriptionIds %}
{{ subscription.subscriptionId }}
{% empty %}

You don't have any subscriptions.

{% endfor %}
{% endpartialdef main %} {% block content %} {% partial main %} {% endblock content %}