{% extends 'oscar/dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block title %} {% trans "PayPal Express Checkout transactions" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "PayPal Express Checkout transactions" %} {% endblock %} {% block dashboard_content %} {% if transactions %} {% for txn in transactions %} {% endfor %}
{% trans "Order ID" %} {% trans "Capture ID" %} {% trans "Refund ID" %} {% trans "Authorization ID" %} {% trans "Amount" %} {% trans "Status" %} {% trans "Intent" %} {% trans "Date" %}
{{ txn.order_id }} {{ txn.capture_id }} {{ txn.refund_id }} {{ txn.authorization_id }} {{ txn.amount|currency:txn.currency }} {{ txn.status }} {{ txn.intent }} {{ txn.date_created }}
{% include "oscar/partials/pagination.html" %} {% else %}

{% trans "No transactions have been made yet." %}

{% endif %} {% endblock dashboard_content %}