{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Hosting Client Payment Checkout | Host in Sri Lanka{% endblock %} {% block content %}
Hosting Client Checkout

Review & continue to payment

Review the selected hosting client payable items, confirm the total amount, and choose Stripe or PayPal to continue securely.

Selected Payable Items

These are the payment items you selected from your Hosting Client Payment Center.

{% for item in payable_items %} {% endfor %}
Payment Item Type Amount
{{ item.title }}
{% if item.description %}
{{ item.description }}
{% endif %} {% if item.reference_code %}
{{ item.reference_code }}
{% endif %}
{{ item.get_payment_for_display }} USD {{ item.amount_usd|floatformat:2 }}
Total Payment USD {{ total_amount|floatformat:2 }}

Important Payment Note

Your booking will be marked as paid after successful checkout.

Stripe and PayPal checkout starter views are connected from this page. Final payment transaction creation and gateway API handling can be completed later using your shared project payment logic.

Payment Summary

Confirm the total and choose your preferred payment method.

Total Payment USD {{ total_amount|floatformat:2 }}
{% if hosting_client_profile %}
Client {{ hosting_client_profile.full_name }}
Email {{ hosting_client_profile.email }}
{% endif %}
{% csrf_token %} {% for item in payable_items %} {% endfor %}
Secure HTTPS SSL TLS Protected
Secure Checkout Your payment is protected through SSL/TLS encrypted connection.
Back to Payment Center
{% endblock %}