{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Payment Cancelled | Hosting Client Portal{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Event Payment Not Completed

Payment cancelled. Your booking items are still due.

Your event payment was cancelled or not completed. No gateway payment has been finalized for this transaction, and your selected hosting booking payment items remain available in your Payment Center.

Payment Attempt Summary

This event 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 booking 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 — event payment not finalized
    ${{ item.amount_usd }}
  • {% empty %}
  • No payment items found.
  • {% endfor %}
You can try again

Return to your Hosting Client Payment Center and start a new checkout attempt. Your unpaid event booking 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 %}