{% extends "base.html" %} {% block title %}Single Payments - Plutus{% endblock %} {% block content %}
Individual payment processing history
| Payment ID | Date | Splynx ID | Stripe Customer | Payment Intent | Payment Method | Stripe Fee | Amount | Processed By | Data | Status |
|---|---|---|---|---|---|---|---|---|---|---|
| #{{ payment.id }} |
{{ payment.Created.strftime('%Y-%m-%d') }} {{ payment.Created.strftime('%H:%M:%S') }} |
{% if payment.Splynx_ID %} {{ payment.Splynx_ID }} {% else %} - {% endif %} |
{% if payment.Success == True %}
{{ payment.Stripe_Customer_ID or '-' }}
{% elif payment.Success == False and payment.Error %}
{{ payment.Stripe_Customer_ID or '-' }}
{% elif payment.Success == None %}
{{ payment.Stripe_Customer_ID or '-' }}
{% else %}
{{ payment.Stripe_Customer_ID or '-' }}
{% endif %}
|
{% if payment.Payment_Intent %}
{% if payment.Success == True %}
{{ payment.Payment_Intent }}
{% elif payment.Success == False and payment.Error %}
{{ payment.Payment_Intent }}
{% elif payment.Success == None %}
{{ payment.Payment_Intent }}
{% else %}
{{ payment.Payment_Intent }}
{% endif %}
{% else %}
-
{% endif %}
|
{% if payment.Payment_Method %} {{ payment.Payment_Method }} {% else %} - {% endif %} | {% if payment.Fee_Stripe %} {{ payment.Fee_Stripe | currency }} {% else %} - {% endif %} | {% if payment.Payment_Amount %} {{ payment.Payment_Amount | currency }} {% else %} - {% endif %} | {{ payment.processed_by or 'Unknown' }} | {% if payment.Refund == True %} Refund {% elif payment.Success == True %} Success {% elif payment.Success == False and payment.PI_FollowUp %} Pending {% elif payment.Success == False %} Failed {% else %} Pending {% endif %} |
No single payments found. Process your first payment.
Payment JSON - Payment #{{ payment.id }}
{{ payment.PI_JSON | format_json }}
Refund JSON - Payment #{{ payment.id }}
{{ payment.Refund_JSON | format_json }}
Payment Error - Payment #{{ payment.id }}
{{ payment.Error }}