{% extends "saas/base_dashboard.html" %} {% block saas_content %}

Charge Receipt

Email Again Printable

On {{charge.created_at}}, we attempted to charge your card for the amount of {{charge.price|humanize_money}}.

{% if charge.is_paid %} The charge succeeded. {% elif charge.is_failed %} The charge failed. {% elif charge.is_disputed %} The charge was disputed. {% elif charge.is_progress %} The charge is in progress... {% endif %}

REFERENCE
#{{ charge.processor_key }}
amount
{{charge.price|humanize_money}}
card
**** - {{charge.last4}}
expires
{{charge.exp_date}}
{% for line in charge_items %} {% for refund in line.refunded %} {% endfor %} {% endfor %}
Amount Description
{{line.invoiced.dest_price|humanize_money}} {{line.invoiced|describe}} {% if line.refundable %} {% endif %}
-{{refund.orig_price|humanize_money}} {{refund|describe}}
{% if next_url %}
Next >
{% endif %}

Refund

Please specify the amount you would like refunded.

{% endblock %}