{% load django_ledger %} {% load i18n %}
{% for bill in bills %} {% endfor %}
Bill Number Bill Date Bill From Amount Payments Is Paid? Past Due? Actions
{{ bill.bill_number }} {{ bill.date }} {{ bill.vendor.vendor_name }} ${{ bill.amount_due | currency_format }} ${{ bill.amount_paid | currency_format }} {% if bill.paid %} {% icon 'bi:check-circle-fill' 24 %} {% else %} {% icon 'clarity:no-access-solid' 24 %} {% endif %} {% if bill.is_past_due %} {% icon 'bi:check-circle-fill' 24 %} {% else %} {% icon 'clarity:no-access-solid' 24 %} {% endif %}