Bill To
{{ data.to.name }}
{% if data.to.address %}
{{ data.to.address | nl2br }}
{% endif %} {% if data.to.email %}
{{ data.to.email }}
{% endif %} {% if data.to.phone %}
{{ data.to.phone }}
{% endif %}
{% if data.due_date %}
Due Date
{{ data.due_date | date_format }}
{% else %}
Issue Date
{{ data.issue_date | date_format }}
{% endif %} {% if data.payment_terms %}
{{ data.payment_terms }}
{% endif %}
{% for item in data.line_items %} {% endfor %}
Description Qty Unit Price Amount
{{ item.description }} {{ item.quantity }} {{ item.unit_price | currency }} {{ (item.amount or item.unit_price * item.qty) | currency }}
Subtotal {{ data.subtotal | currency }}
{% if data.tax_rate > 0 %}
Tax ({{ data.tax_rate | percent }}) {{ (data.tax or data.tax_amount or 0) | currency }}
{% endif %}
Total {{ data.total | currency }}
{% if data.notes %}
Notes
{{ data.notes | nl2br }}
{% endif %} {% if data.payment_link %} {% endif %}