{% extends "invoices/base.html" %} {% load i18n %} {% load base_filters %} {% load invoice_tags %} {% load accounting_tags %} {% block title %}{{ block.super }}{% trans 'Invoice Accounting Entries View'%}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% blocktrans with invoice.id as invoice_id %}A summary of the accounting entries for invoice {{ invoice_id }} is below.{% endblocktrans %}
| {% trans "Account" %} | {% trans "Debit" %} | {% trans "Credit" %} | {% trans "DateTime" %} | {% trans "Description" %} |
|---|---|---|---|---|
| {% trans "Total:" %} | {{ total_debit }} | {{ total_credit }} | ||
| {% trans "Account" %} | {% trans "Total" %} | |
| {{ acctnum.account_number }} | {{ acctnum.description }} | {{ acctnum.total|format_currency }} |