{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% load url from future %} {% block title %} {% trans "PayPal Payflow transaction" %} {{ txn.pnref }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block dashboard_content %}

{% trans "Transaction" %} {{ txn.pnref }}

{% trans "Payflow transaction ID (PNREF)" %}{{ txn.pnref }}
{% trans "Order number" %}{{ txn.comment1 }}
{% trans "Transaction type" %}{{ txn.get_trxtype_display }}
{% trans "Tender" %}{{ txn.get_tender_display }}
{% trans "Amount" %}{{ txn.amount|currency }}
{% trans "Auth code" %}{{ txn.auth_code|default:"-" }}
{% trans "Payment ID (PPREF)" %}{{ txn.ppref|default:"-" }}
{% trans "Auth code" %}{{ txn.authcode|default:"-" }}
{% trans "Result" %}{{ txn.result }}
{% trans "Response message" %}{{ txn.respmsg }}
{% trans "Is approved?" %}{{ txn.is_approved }}
{% trans "Security code match?" %}{{ txn.cvv2match }}
{% trans "House number match?" %}{{ txn.avsaddr }}
{% trans "Postcode match?" %}{{ txn.avszip }}
{% trans "Raw request" %}{{ txn.raw_request }}
{% trans "Raw response" %}{{ txn.raw_response }}
{% trans "Date" %}{{ txn.date_created }}
{% if show_forms %}

{% trans "Actions" %}

{% csrf_token %}
{% endif %} {% endblock dashboard_content %}