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

Charge Receipt

{% comment %} The following paragraphs are specially crafted such that only one appears at any one time and ``waitForChargeCompleted`` can easily toggle between them. {% endcomment %}

On {{charge.created_at}}, the credit card has been charged for an amount of {{charge.amount|usd}}. Payment Information:

On {{charge.created_at}}, we attempted to charge your card for {{charge.amount|usd}}. The charge failed.

On {{charge.created_at}}, we attempted to charge your card for {{charge.amount|usd}}. The charge was disputed.

On {{charge.created_at}}, we attempted to charge your card for {{charge.amount|usd}}. The charge is in progres...

REFERENCE
#{{ charge.processor_id }}
amount
{{charge.amount|usd}}
card
**** - {{charge.last4}}
expires
{{charge.exp_date}}
{% for line in charge_items %} {% endfor %}
Amount Description
{{line.invoiced.dest_amount|usd}} {{line.invoiced|describe}} {% if line.refunded %} Refunded {% else %} {% if line.invoiced|refund_enable:user %} {% endif %} {% endif %}
{% if next_url %}
Next >
{% endif %} {% endblock %} {% block bodyscripts %} {% endblock %}