{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block title %} {% trans "Cash on Delivery transaction" %} {{ txn.pnref }} | {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block headertext %} {% blocktrans with reference=txn.reference %}Transaction {{ reference }}{% endblocktrans %} {% endblock %} {% block dashboard_content %}| {% trans "Reference" %} | {{ txn.reference }} |
|---|---|
| {% trans "Date" %} | {{ txn.date_created }} |
| {% trans "Method" %} | {{ txn.method }} |
| {% trans "Amount" %} | {{ txn.amount|default:"-" }} |
| {% trans "Currency" %} | {{ txn.currency }} |
| {% trans "Confirmed" %} | {{ txn.confirmed }} |
| {% trans "Date confirmed" %} | {% if txn.confirmed %}{{ txn.date_confirmed }}{% else %} - {% endif %} |