{% extends "recurring_payments/authnet/base.html" %} {% load i18n %} {% block title %} {% trans "Manage Customer Payment and Shipping Information" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}

{% if request.user.id == rp.user.id %} Manage my Payment Info {% else %} {% trans "Manage Payment Info for " %} {{ rp.user.get_full_name }} ({{ rp.user.email }}) {% endif %}

{% if gateway_error %}
Oops, we're not able to process your request at the moment due to an error from payment gateway. Please try again later or contact your site administrator for assistance. Thanks!
{% else %}
{% endif %}
{% endblock %} {% block extra_body %} {{ block.super }} {% if not gateway_error %} {% endif %} {% endblock %}