{% extends "base" %} {% load extratags %} {% block title %}{{SERVICE_NAME|escape}} - Payment Detail{% endblock %} {% block script %} {% endblock %} {% block content %} {% if inPayment %}

Payment from {{pmt.payer_email|escape}}

{% else %}{% if outPayment %}

Payment to {{pmt.recipient_email|escape}}

{% else %}

Through Payment

{% endif %}{% endif %} {% include "info" %} {% ifnotequal inPayment outPayment %} {% if inPayment %} {% else %} {% endif %} {% endifnotequal %}
Payment ID{{pmt.id}}
Date{{pmt.date|date:"d M Y"}}
Received from{{pmt.payer_email|escape}}
Paid to{{pmt.recipient_email|escape}}
Amount{{pmt.amount|myStrFormat:".2f"}}
Payment units{{pmt.get_currency.long_name|escape}}
Description {{pmt.description|escape|linebreaksbr}}
{% if inPayment %}

Make a payment back to this user

{% endif %} {% if outPayment %}

Make another payment to this user

{% endif %}
{% if inAccts %} {% if convertibleUnits %}{% endif %} {% for acct in inAccts %} {% if convertibleUnits %}{% endif %} {% endfor %} {% if convertibleUnits %} {% endif %} {% endif %} {% if outAccts %} {% if convertibleUnits %}{% endif %} {% for acct in outAccts %} {% if convertibleUnits %}{% endif %} {% endfor %} {% if convertibleUnits %} {% endif %} {% endif %}
Accounts receiving payment
IDAccount nameEntryConverted to
{{acct.get_shared_data.id}} {{acct.name|escape}} {{acct.get_shared_data.get_currency.short_name|escape}} {{acct.inEntry|myStrFormat:".2f"}}{{acct.displayInEntry|myStrFormat:".2f"}}
Total {{displayInTotal|myStrFormat:".2f"}}
Accounts sending payment
IDAccount nameEntryConverted to
{{acct.get_shared_data.id}} {{acct.name|escape}} {{acct.get_shared_data.get_currency.short_name|escape}} -{{acct.outEntry|myStrFormat:".2f"}}-{{acct.displayOutEntry|myStrFormat:".2f"}}
Total {{displayOutTotal|myStrFormat:".2f"}}

Return to Payments

{% endblock %}