{% extends 'base.html' %} {% load i18n %} {% block main %} {% include 'message_block.html' %}

{% trans 'People with debts' %}

{% for invoice in invoices %} {% empty %} {% endfor %}
# {% trans 'Sub' %} {% trans 'Sum of pay' %} {% trans 'Comment' %} {% trans 'Date of make' %} {% trans 'Author' %}
{{ invoice.id }} {{ invoice.abon.username }} {{ invoice.amount }} {{ invoice.comment }} {{ invoice.date_create|date:'d b H:i' }} {{ invoice.author.username }}
{% trans 'Debts not found' %}
{% include 'toolbar_page.html' with pag=peoples %} {% endblock %}