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

We could not complete your event payment.

Your hosting event payment could not be verified or completed. Your selected booking, package, meal plan, or add-on 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 booking 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 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 %}