{% load price from taxed_prices %}
{{ order.billing_address.company_name }}
{{ order.billing_address.street_address_1 }}
{% if order.billing_address.street_address_2 %} {{ order.billing_address.street_address_2 }}
{% endif %} {{ order.billing_address.city }}
{{ order.billing_address.postal_code }}
{% if order.billing_address.phone %} {{ order.billing_address.phone }}
{% endif %} {{ order.get_customer_email }}
INVOICE INFORMATION Invoice number:
{{ invoice.number }}
Order:
{{ order.number }}
Date:
{{ creation_date }}
Amount:
{% price order.total_gross display_gross=order.display_gross_prices %}
BILLING ADDRESS
{{ order.billing_address.first_name }} {{ order.billing_address.last_name }}
{{ order.billing_address.street_address_1 }}
{% if order.billing_address.street_address_2 %} {{ order.billing_address.street_address_2 }}
{% endif %} {{ order.billing_address.country }}
{{ order.billing_address.city }}
{{ order.billing_address.postal_code }}
{{ order.billing_address.phone }}
{{ order.get_customer_email }}
SHIPMENT ADDRESS
{{ order.shipping_address.first_name }} {{ order.shipping_address.last_name }}
{{ order.shipping_address.street_address_1 }}
{% if order.shipping_address.street_address_2 %} {{ order.shipping_address.street_address_2 }}
{% endif %} {{ order.shipping_address.country }}
{{ order.shipping_address.city }}
{{ order.shipping_address.postal_code }}
{{ order.shipping_address.phone }}
{{ order.user_email }}
 
PAYMENT METHOD
{% if order.get_last_payment %} {{ order.get_last_payment.gateway }} {% else %} Unpaid {% endif %}
SHIPMENT METHOD
{{ order.shipping_method_name }}
 
ITEMS ORDERED {% include "invoices/invoice_products_table.html" with products=products_first_page order=order %} {% if not rest_of_products|length %} {% if products_first_page|length == 4 %}
{% endif %} {% include "invoices/invoice_summary_table.html" with order=order %} {% else %} {% for product_set in rest_of_products %}
{% include "invoices/invoice_products_table.html" with products=product_set order=order %} {% if forloop.last %} {% if product_set|length > 11 %}
{% endif %} {% include "invoices/invoice_summary_table.html" with order=order gift_cards_payment=gift_cards_payment %} {% endif %} {% endfor %} {% endif %}