{% extends "cms/admin_home.html" %} {% load sekizai_tags i18n %} {% block content %}

{% trans "Process Refund: Confirmation" %}

{% trans "Please confirm the following before sending" %}:

{% if initial_refund_amount %} {% endif %}
{% trans "Refund This Amount" %}: {{ currencySymbol }}{{ amount_to_refund|floatformat:"2" }}
{% trans "Prior Refunds to Invoice" %}: {{ currencySymbol }}{{ initial_refund_amount|floatformat:"2" }}
{% trans "Total Refunds to Invoice" %}: {{ currencySymbol }}{{ total_refund_amount|floatformat:"2" }}
{% if payments %}
{% trans "Payment Details" %}
{% for payment in payments %} {{ payment.methodName }}: {{ payment.recordId }}
{% if not payment.refundable %} {% trans "Note" context "alert" %}: {% trans "This payment does not appear to be automatically refundable. Please manually refund the money to this student after filling out this form." %}
{% endif %} {% endfor %}
{% endif %}
{% trans "Process Refund" %} {% trans "Return To Form" %}
{% endblock %}