{% load django_ledger %} {% load i18n %}
{% trans 'Number' %} | {% trans 'Status' %} | {% trans 'Status Date' %} | {% trans 'Vendor' %} | {% trans 'Amount Due' %} | {% trans 'Payments' %} | {% trans 'Past Due' %} | {% trans 'Actions' %} |
---|---|---|---|---|---|---|---|
{{ bill.bill_number }} | {{ bill.get_bill_status_display }} | {{ bill.get_status_action_date }} | {{ bill.vendor.vendor_name }} | {% currency_symbol %}{{ bill.amount_due | currency_format }} | {% currency_symbol %}{{ bill.amount_paid | currency_format }} | {% if bill.is_past_due %} {% icon 'bi:check-circle-fill' 24 %} {% endif %} |
|