{% extends "dashboard/base.html" %} {% load prices_i18n %} {% load i18n %} {% load status %} {% load utils %} {% block title %}{% trans "Payment" %} #{{ payment.id }} - {% trans "Payments" %} - {{ block.super }}{% endblock %} {% block body_class %}body-payments{% endblock %} {% block header_menu %} {% url "dashboard:payments" as url %} {% include "dashboard/includes/_back-link.html" with url=url %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block menu_sales_class %} active{% endblock %} {% block content %}
Payment details
  • {% trans "Payment status" %}: {% render_status payment.status payment.get_status_display %}
  • {% trans "Fraud status" %}: {% render_status payment.fraud_status payment.get_fraud_status_display %}
  • {% trans "Amount" %}: {% gross payment.get_total_price %}
  • {% trans "Captured amount" %}: {% gross payment.get_captured_price %}
  • {% trans "Gateway" %}: {{ payment.variant }}
  • {% trans "Transaction ID" %}: {{ payment.transaction_id }}
  • {% trans "Payment date" %}: {{ payment.created }}
{% trans "Gateway response" %} {% if payment.message %} {{ payment.message }} {% else %}

{% trans "No response available." %}

{% endif %}
{% trans "Customer" %}
{% if payment.order.user %}
{% trans "Account" %}: {{ payment.order.user }}
{% else %}
{% trans "Account" %}: {% trans "Guest" %}
{% endif %}
Customer IP: {{ payment.customer_ip_address }}
{% trans "Billing address" %}
{{ payment.billing_first_name }} {{ payment.billing_last_name }}
{{ payment.billing_address_1 }}
{% if payment.payment.billing_address_2 %}
{{ payment.payment.billing_address_2 }}
{% endif %}
{{ payment.billing_postcode }}
{{ payment.billing_city }}, {{ payment.billing_country_code }}
{% endblock %}