{% extends 'dating_app/base_dating.html' %} {% load static %} {% block title %}Payment Cancelled | Dating Partner Portal{% endblock %} {% block content %}
Payment Not Completed

Payment Cancelled

Your payment was cancelled or not completed. No gateway payment has been finalized for this transaction, and your selected payment items will remain due.

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 the 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 Payment Center and start a new checkout attempt. Your unpaid dating partner payment items will stay available until paid.

Important: If you believe money was deducted from your account, contact support with transaction number #{{ payment_transaction.id }}.
{% endblock %}