{% extends "lingo/manager_homepage.html" %} {% load gadjo i18n %} {% block page-title-extra-label %}{% trans "E-Payment" %}{% endblock %} {% block breadcrumb %} {{ block.super }} {% trans "E-Payment" %} {% endblock %} {% block appbar %}

{% trans 'E-Payment' %}

{% if backend_exists %} {% trans 'Configure payment backends' %} {% endif %} {% endblock %} {% block content %} {% if object_list or request.GET %}
{% trans "Transaction Filtering" %}
{{ filterset.form|with_template }}
{% for object in object_list %} {% endfor %}
{% trans 'Status' %} {% trans 'Date' %} {% trans 'Order Identifier' %} {% trans 'Bank Transaction Identifier' %} {% trans "Invoice number" %} {% trans 'Amount' %}
{{ object.status_label }} {{ object.start_date }} {{ object.order_id }} {{ object.bank_transaction_id|default:"" }} {% if object.invoice %}{{ object.invoice.formatted_number }}{% else %}-{% endif %} {% blocktrans with amount=object.amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %}
{% include "gadjo/pagination.html" %}
{% else %}
{% blocktrans %} There are no transactions yet. {% endblocktrans %}
{% endif %} {% endblock %}