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

Payment cancelled. Your selected items are still due.

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

Payment Attempt Summary

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

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