{% block heading %}XRechnung Invoices{% endblock %}
Filter
Clear
{% block content %}
{% for invoice in invoices %}
{{ invoice.get_invoice_type_display }} {{ invoice.invoice_number }}
Date:
{{ invoice.invoice_date }}
Supplier:
{{ invoice.supplier_name }}
Buyer:
{{ invoice.buyer_name }}
Total:
{{ invoice.total_amount }} {{ invoice.currency }}
{% empty %}
No invoices found.
{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %}
« first
previous
{% endif %}
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% if page_obj.has_next %}
next
last »
{% endif %}
{% endif %} {% endblock %}