{% extends 'dashboard/layout.html' %} {% load url from future %} {% load currency_filters %} {% load i18n %} {% block title %} {% trans "Transfers" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %}{% trans "Transfers" %}{% endblock %} {% block dashboard_content %}

{% trans "Search" %}

{% include 'partials/form_fields.html' %} or {% trans "reset" %}.

{{ queryset_description }}

{% if transfers %} {% for transfer in transfers %} {% endfor %}
{% trans "Reference" %} {% trans "Source" %} {% trans "Destination" %} {% trans "Amount" %} {% trans "Order number" %} {% trans "Description" %} {% trans "Authorised by" %} {% trans "Date created" %}
{{ transfer.reference }} {{ transfer.source }} {{ transfer.destination }} {{ transfer.amount|currency }} {{ transfer.merchant_reference|default:"-" }} {{ transfer.description|default:"-" }} {{ transfer.user|default:"-" }} {{ transfer.date_created }}
{% include "partials/pagination.html" %} {% else %}

{% trans "No transfers found." %}

{% endif %} {% endblock dashboard_content %}