{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% block title %} PayPal Payflow transactions | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block dashboard_content %}

PayPal Payflow transactions

{% for txn in transactions %} {% endfor %}
Order number Transaction type Amount PN reference PP reference Response code Response message Response time (ms) Date
{{ txn.comment1 }} {{ txn.get_trxtype_display }} {{ txn.amount|currency|default:"-" }} {{ txn.pnref }} {{ txn.ppref|default:"-" }} {{ txn.result }} {{ txn.respmsg }} {{ txn.response_time|floatformat:0 }} {{ txn.date_created }} View
{% if page_obj %} {% include "catalogue/partials/pagination.html" %} {% endif %} {% endblock dashboard_content %}