{% extends "base.html" %} {% block content %}
{{ payment.amount }} {{ payment.currency or 'EUR' }}
{{ payment.payment_date.strftime('%B %d, %Y') if payment.payment_date else 'N/A' }}
{% if payment.method %} {{ payment.method }} {% else %} N/A {% endif %}
{{ payment.reference }}
{{ payment.gateway_transaction_id }}
{{ payment.gateway_fee }} {{ payment.currency or 'EUR' }}
{{ payment.net_amount or payment.amount }} {{ payment.currency or 'EUR' }}
{{ payment.receiver.username if payment.receiver else 'Unknown' }}
{{ payment.created_at|user_datetime('%B %d, %Y at %I:%M %p') if payment.created_at else 'N/A' }}
{{ payment.updated_at|user_datetime('%B %d, %Y at %I:%M %p') if payment.updated_at else 'N/A' }}
{{ payment.notes }}
{{ payment.invoice.client_name }}
{{ payment.invoice.total_amount }} {{ payment.invoice.currency_code }}
{{ payment.invoice.amount_paid or 0 }} {{ payment.invoice.currency_code }}
{{ payment.invoice.outstanding_amount }} {{ payment.invoice.currency_code }}