{% load i18n %} {% load satchmo_currency %} {% load satchmo_checkout %} {% for payment in order.payments_completed %} {% if forloop.first %}

{% trans 'Paid' %}

{% endif %} {{ payment.time_stamp|date:"y-M-d H:i" }} {{ payment.payment|payment_label }} - {{ payment.amount|currency }}
{% if forloop.last %} {% with order.balance|currency as balance %} {% blocktrans %}Balance = {{ balance }} {% endblocktrans %} {% endwith %} {% endif %} {% if paylink and not order.paid_in_full %}

{% trans 'Pay remaining balance' %}

{% endif %} {% endfor %}