{% extends 'expat_life/base.html' %} {% load static %} {% block title %}Payment Failed | Live in Sri Lanka{% endblock %} {% block content %}
Payment Failed

We Could Not Complete Your Payment

Your payment could not be verified or completed. Your selected payment items may still remain due in your Payment Center until the payment is successfully processed.

Payment Attempt Summary

Please review the transaction details below. You can retry payment or contact support if needed.

{{ payment_transaction.get_status_display }}
Transaction No #{{ payment_transaction.id }}
Payment Method {{ payment_transaction.get_payment_method_display }}
Total Selected Amount ${{ payment_transaction.total_amount_usd }}
Gateway Amount ${{ payment_transaction.gateway_amount_usd }}
Wallet Used / Expected ${{ payment_transaction.wallet_deduction_usd }}
Current Status {{ payment_transaction.get_status_display }}
{% if payment_transaction.failure_reason %}
Reason: {{ payment_transaction.failure_reason }}
{% endif %}
Selected Payment Items

These items may still remain due until a payment is completed.

    {% for item in payment_transaction.items.all %}
  • {{ item.payable_item.title }}
    Please check your Payment Center for current status
    ${{ item.amount_usd }}
  • {% empty %}
  • No payment items found.
  • {% endfor %}
What should you do now?

You can return to the Payment Center and try again using the same or another available payment method. If the issue continues, contact support with your transaction number.

If you believe money was deducted, please avoid repeated attempts and contact support with transaction number #{{ payment_transaction.id }}.
{% endblock %}