{% load static custom_filters %} {{ title }}
{% if logo_url %} {% else %} {% endif %}

Invoice To:

{{ customer_name }}
{{ customer_address }}
{{ customer_email }}
{{ customer_phone }}

{{ title }}
Grand Total:
{{ grand_total }} {{ currency }}
Invoice Date:
{{ invoice_date|date:"F j, Y" }}
Invoice No:
{{ tracking_code }}
{% for column in custom_columns %} {% endfor %} {% for item in items %} {% for column in custom_columns %} {% endfor %} {% endfor %}
Item{{ column }}Qty Unit price Total

{{ item.name }}

{{ item.description }}
{{ item.custom_data|get_item:column }}{{ item.quantity }} {{ item.measurement }} {{ item.unit_price }} {{ currency }} {{ item.total_price }} {{ currency }}
{% for field in additional_fields %}

{{ field.label }}:

    {% for sentence in field.content|split_by_period %}
  • {{ sentence }}
  • {% endfor %}
{% endfor %}
Print