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

Payment successful. Your event booking is confirmed.

Thank you. Your Hosting Client payment has been recorded successfully. Your selected event booking, package, meal plan, or add-on payment has been updated in the Host in Sri Lanka platform.

Payment Confirmation

Transaction reference and paid item summary for your event hosting request.

{{ 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 Paid ${{ payment_transaction.gateway_amount_usd }}
Wallet Used ${{ payment_transaction.wallet_deduction_usd }}
Gateway Reference {% if payment_transaction.gateway_transaction_id %} {{ payment_transaction.gateway_transaction_id }} {% elif payment_transaction.gateway_session_id %} {{ payment_transaction.gateway_session_id }} {% else %} Internal wallet payment {% endif %}
Paid Items

These items were included in this event payment transaction.

    {% for item in payment_transaction.items.all %}
  • {{ item.payable_item.title }}
    Event payment successfully processed
    ${{ item.amount_usd }}
  • {% empty %}
  • No payment items found.
  • {% endfor %}
What happens next?

Your booking payment has been recorded. The hosting arrangement can now move forward according to the confirmed booking details, venue availability, selected package, meals, add-ons, and coordination notes.

Your transaction has been recorded securely. Please keep your transaction number #{{ payment_transaction.id }} for future reference.
{% endblock %}