{% if object_list %} {% for invoice in object_list %} {% endfor %}
{{ _('Invoice number') }} {{ _('Date of issue') }} {{ _('Due date') }} {{ _('Customer') }} {{ _('Status') }} {{ _('Total amount') }} {{ _('Currency') }}
{{ invoice.number }} {{ invoice.date_of_issue }} {{ invoice.due_date }} {{ invoice.buyer }} {{ invoice.get_status_display }} {{ invoice.total_amount|floatformat:2 }} {{ invoice.currency }}
{% include 'faktura/includes/pagination.html' %} {% else %}

{{ _('No invoices found!') }}

{% endif %}