{% extends 'base.html' %} {% block title %}{{ invoice.reference }}{% endblock %} {% block content %}
| Description | Qty | Unit Price | Total |
|---|---|---|---|
| {{ item.description }} | {{ item.quantity }} | {{ business.currency }} {{ item.unit_price|floatformat:0 }} | {{ business.currency }} {{ item.line_total|floatformat:0 }} |
| Date | Amount | Method | Account | Note | By |
|---|---|---|---|---|---|
| {{ payment.date|date:"d M Y" }} | {{ business.currency }} {{ payment.amount|floatformat:0 }} | {{ payment.get_payment_method_display }} | {{ payment.account.name }} | {{ payment.note|default:"—" }} | {{ payment.created_by.username|default:"—" }} |