{% if logo_url %} Company Logo {% endif %}

{% if invoice.type == invoice.INVOICE_TYPES.INVOICE %}{{ _("Invoice") }}{% endif %} {% if invoice.type == invoice.INVOICE_TYPES.PROFORMA %}{{ _("Order Confirmation") }}{% endif %} {% if invoice.type == invoice.INVOICE_TYPES.DUPLICATE %}{{ _("Invoice (Duplicate)") }}{% endif %}
{{ invoice.full_number }}

{% if copy %} {{ _("COPY") }} {% else %} {{ _("ORIGINAL") }} {% endif %}
{{ _("Issued") }}: {{ invoice.issued|date:"F j, Y" }}
{% if invoice.type != invoice.INVOICE_TYPES.PROFORMA %}
{{ _("Order Date") }}: {{ invoice.selling_date|date:"F j, Y" }}
{% endif %}
{{ _("Seller") }}
{{ invoice.issuer_name }}
{{ invoice.issuer_street }}
{{ invoice.issuer_zipcode }} {{ invoice.issuer_city }}
{{ invoice.issuer_country.name }}
{{ _("VAT ID") }}: {{ invoice.issuer_tax_number }}
{{ _("Buyer") }}
{{ invoice.buyer_name }}
{{ invoice.buyer_street }}
{{ invoice.buyer_zipcode }} {{ invoice.buyer_city }}
{{ invoice.buyer_country.name }}
{% if invoice.buyer_tax_number %} {{ _("VAT ID") }}: {{ invoice.buyer_tax_number }} {% endif %}
{% if invoice.shipping_name %}
{{ _("Shipping Address") }}
{{ invoice.shipping_name }}
{{ invoice.shipping_street }}
{{ invoice.shipping_zipcode }} {{ invoice.shipping_city }}
{{ invoice.buyer_country.name }}
{% endif %}
{{ _("Invoice Items") }}
{% if invoice.rebate %} {% endif %} {% if invoice.rebate %} {% endif %}
# {{ _("Description") }} {{ _("Unit Price") }} {{ _("Quantity") }} {{ _("Unit") }}{{ _("Rebate") }}{{ _("Subtotal") }} {{ _("VAT") }} {{ _("VAT Amount") }} {{ _("Total") }}
1 {{ invoice.item_description }} {{ invoice.unit_price_net|floatformat:2 }} {{ invoice.quantity }} {{ _("units") }}{{ invoice.rebate|floatformat:2 }}% {{ invoice.total_net|floatformat:2 }} {% if invoice.tax != None %} {{ invoice.tax|floatformat }}% {% else %} n/a {% endif %} {% if invoice.tax_total != None %} {{ invoice.tax_total|floatformat:2 }} {% else %} {{ _("n/a") }} {% endif %} {{ invoice.total|floatformat:2 }}
{{ _("Total") }} {{ invoice.total_net|floatformat:2 }} {% if invoice.tax != None %} {{ invoice.tax|floatformat }}% {% else %} {{ _("n/a") }} {% endif %} {% if invoice.tax_total != None %} {{ invoice.tax_total|floatformat:2 }} {% else %} {{ _("n/a") }} {% endif %} {{ invoice.total|floatformat:2 }}
{{ _("Payment Information") }}
{% if invoice.type != invoice.INVOICE_TYPES.PROFORMA %}
{{ _("Method") }}: {{ _("Electronic Payment") }}
{% endif %}
{{ _("Due Date") }}: {{ invoice.payment_date|date:"F j, Y" }}
{% if invoice.type != invoice.INVOICE_TYPES.PROFORMA %}
{{ _("Payment Received") }}
{% endif %}
{{ _("Notes") }}
{% if invoice.type == invoice.INVOICE_TYPES.PROFORMA %}
{{ _("This document is not an invoice") }}
{% endif %} {% if invoice.tax == None and invoice.is_UE_customer %}
{{ _("Reverse charge applied") }}
{% endif %}

{{ _("Thank you for your business") }}!

{{ _("If you have any questions about this invoice, please contact us") }}.