{% extends "saas/base.html" %} {% load saas_tags %} {% load static from staticfiles %} {% block saas_content %}

Charge Receipt

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

{% 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.amount|humanize_money:charge.unit}}
card
**** - {{charge.last4}}
expires
{{charge.exp_date}}
{% for line in charge_items %} {% for refund in line.refunded %} {% endfor %} {% endfor %}
Amount Description
{{line.invoiced.dest_amount|humanize_money:line.invoiced.dest_unit}} {{line.invoiced|describe}} {% if line.invoiced|refund_enable:user %} {% endif %}
-{{refund.orig_amount|humanize_money:refund.orig_unit}} {{refund|describe}}
{% if next_url %}
Next >
{% endif %}

Refund

Please specify the amount you would like refunded.

{% endblock %} {% block bodyscripts %} {% endblock %}