{% extends 'property_manager_app/base_property_manager.html' %} {% load static %} {% block title %}Payment Cancelled | Home in Sri Lanka{% endblock %} {% block content %}
Property Care Payment Not Completed

Payment cancelled. Your selected care items are still due.

Your Property Care payment was cancelled or not completed. No gateway payment has been finalized for this transaction, and your selected care plan payment items remain available in your Payment Center.

Payment Attempt Summary

This Property Care 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 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

Return to your Property Care Payment Center and start a new checkout attempt. Your unpaid monthly care plan items will remain available until a successful payment is recorded.

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