{% load django_ledger %} {% load i18n %}
Invoice Number | Status Date | Status | Invoiced To | Amount | Payments | Past Due? | Actions |
---|---|---|---|---|---|---|---|
{{ invoice.invoice_number }} | {{ invoice.get_status_action_date }} | {{ invoice.get_invoice_status_display }} | {{ invoice.customer.customer_name }} | {% currency_symbol %}{{ invoice.amount_due | currency_format }} | {% currency_symbol %}{{ invoice.amount_paid | currency_format }} | {% if invoice.is_past_due %} {% icon 'bi:check-circle-fill' 24 %} {% endif %} |
|