{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans 'People with debts' %}{% endblock %} {% block breadcrumb %} {% endblock %} {% block page-header %} {% trans 'People with debts' %} {% endblock %} {% block main %}
{% 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' %}
{% endblock %}