3ncount

{{ organization.name }}

{% if organization.business_registration_no %}

Business Reg: {{ organization.business_registration_no }}

{% endif %} {% if organization.address %}

{{ organization.address }}

{% endif %} {% if organization.city %}

{{ organization.city }}{% if organization.postcode %}, {{ organization.postcode }}{% endif %}

{% endif %} {% if organization.phone %}

Phone: {{ organization.phone }}

{% endif %} {% if organization.email %}

Email: {{ organization.email }}

{% endif %}

INVOICE

{{ invoice.invoice_number }}

Date: {{ invoice.invoice_date|date:"d M Y" }}

{% if invoice.due_date %}

Due Date: {{ invoice.due_date|date:"d M Y" }}

{% endif %} {{ invoice.get_status_display }}

BILL TO

{{ organization.name }}

{% if organization.address %}

{{ organization.address }}

{{ organization.city }}{% if organization.postcode %}, {{ organization.postcode }}{% endif %}

{% endif %} {% if organization.tax_id %}

Tax ID: {{ organization.tax_id }}

{% endif %}
{% if invoice.line_items %} {% for item in invoice.line_items %} {% endfor %} {% else %} {% endif %}
Description Quantity Unit Price Amount
{{ item.description }} {{ item.quantity|default:"1" }} {{ invoice.currency }} {{ item.amount|floatformat:2 }} {{ invoice.currency }} {{ item.amount|floatformat:2 }}
Subscription Services 1 {{ invoice.currency }} {{ invoice.subtotal|floatformat:2 }} {{ invoice.currency }} {{ invoice.subtotal|floatformat:2 }}
Subtotal: {{ invoice.currency }} {{ invoice.subtotal|floatformat:2 }}
{% if invoice.tax_amount and invoice.tax_amount > 0 %}
Tax ({{ invoice.tax_name|default:"Tax" }}): {{ invoice.currency }} {{ invoice.tax_amount|floatformat:2 }}
{% endif %} {% if invoice.discount_amount and invoice.discount_amount > 0 %}
Discount: - {{ invoice.currency }} {{ invoice.discount_amount|floatformat:2 }}
{% endif %}
TOTAL: {{ invoice.currency }} {{ invoice.total_amount|floatformat:2 }}
{% if invoice.status == 'PAID' and invoice.paid_at %}

✓ Payment Received

Paid On: {{ invoice.paid_at|date:"d M Y H:i" }}

{% if invoice.payment_reference %}

Transaction ID: {{ invoice.payment_reference }}

{% endif %} {% if invoice.payment_method %}

Payment Method: {{ invoice.payment_method.get_type_display }} ({{ invoice.payment_method.get_gateway_display }})

{% endif %}
{% endif %} {% if invoice.notes %}

Notes:

{{ invoice.notes }}

{% endif %}