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

Payment Cancelled

Your payment was cancelled or not completed. No gateway payment has been finalized for this transaction, and your selected payment items will remain due.

Payment Attempt Summary

This payment was not completed. You can safely return to your Payment Center and try again.

{{ 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 }}
{% if payment_transaction.wallet_deduction_usd > 0 %}
Wallet Reserved / Expected ${{ payment_transaction.wallet_deduction_usd }}
{% endif %}
Current Status {{ payment_transaction.get_status_display }}
Selected Payment Items

These items were selected, but they are still due because the payment was not completed.

    {% for item in payment_transaction.items.all %}
  • {{ item.payable_item.title }}
    Still due — payment not finalized
    ${{ item.amount_usd }}
  • {% empty %}
  • No payment items found.
  • {% endfor %}
You can try again

You can return to the Payment Center and start a new checkout attempt. The system will keep your unpaid items available until a payment is completed.

Important: If you believe money was deducted from your account, please contact support with transaction number #{{ payment_transaction.id }}.
{% endblock %}