{% extends PAYMENT_BASE_TEMPLATE %}
{% load i18n %}
{% block title %}
Payment Success
{% endblock %}
{% block description %}
{% trans 'Your payment was successful! Thank you for your purchase.' %}
{% endblock %}
{% block body %}
Payment status : {{ payment_info.get_status }}
-
Order number: {{ payment_info.get_order_id }}
-
Date: {{ current_date }}
-
Total:
{{ payment_info.get_currency }}{{ payment_info.get_total_amount }}
-
Payment method: Check payments
Payment details
Service / Product |
Total |
{{ linked_object }}
|
{{ payment_info.get_currency }}{{ payment_info.get_amount }}
|
Subtotal: |
{{ payment_info.get_currency }}{{ payment_info.get_amount }}
|
Taxes: |
{{ payment_info.get_currency }}{{ payment_info.get_fee }}
|
Payment method: |
Check payments |
Total: |
{{ payment_info.get_currency }}{{ payment_info.get_total_amount }}
|
Customer details
Email: |
{{ user_email }} |
Name: |
{{ first_name }} |
{% endblock %}
{% block customCSS %}
{% endblock %}