{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %}Payment Successful | Property Partner Portal{% endblock %} {% block content %}
Secure Payment Completed

Payment Successful

Thank you. Your Property Partner payment has been recorded successfully, and your rental owner profile or listing visibility has been updated based on the selected payment items.

Payment Confirmation

Transaction reference and paid item summary for your Property Partner account.

{{ 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 payment transaction.

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

Your Property Partner account will now reflect this payment. If you paid for featured visibility, your rental owner profile and related listings can receive better presentation and approval visibility within the rental platform.

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