Invoice Detail
{{ client.company_name or client.contact_name or client.email }}
{% if (invoice.status or "")|lower == "paid" %}
✓ This invoice has been paid. Thank you!
{% endif %}
Invoice
{{ invoice.invoice_number or ("INV-" ~ invoice.id) }}
Status
{% set s = (invoice.status or "")|lower %}
{% if s == "paid" %}
{{ invoice.status }}
{% elif s == "pending" %}
{{ invoice.status }}
{% elif s == "overdue" %}
{{ invoice.status }}
{% else %}
{{ invoice.status }}
{% endif %}
Created
{{ invoice.created_at }}
Total
{{ invoice.total_amount }}
Paid
{{ invoice.amount_paid }}
Outstanding
{{ invoice.outstanding }}
Invoice Items
| Description |
Qty |
Unit Price |
Line Total |
{% for item in items %}
| {{ item.description }} |
{{ item.quantity }} |
{{ item.unit_price }} |
{{ item.line_total }} |
{% else %}
| No invoice line items found. |
{% endfor %}
{% if (invoice.status or "")|lower != "paid" %}
Payment Instructions
Interac e-Transfer
Send payment to:
payment@outsidethebox.top
Reference: Invoice {{ invoice.invoice_number or ("INV-" ~ invoice.id) }}
Credit Card (Square)
Pay Now
Please include your invoice number in the payment note.
If you have questions please contact
support@outsidethebox.top
{% endif %}
{% if pdf_url %}
{% endif %}
{% include "footer.html" %}