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

We could not complete your care plan payment.

Your Property Care payment could not be verified or completed. Your selected monthly care plan payment items may remain due until a successful payment is recorded.

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 Property Care items may 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?

Return to your Property Care Payment Center and try again. If the issue continues, contact support with your transaction number.

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