{% if order %}

THREEFOLD MARKETPLACE INVOICE

INV-{{ order.order_id }}
Invoice Date: {{ invoice_date }}
Due Date: {{ due_date }}
SOLD BY:
Project Mycelium
support@threefold.io
BILL TO:
{% if user %}
{{ user.email }}
{% if user.name %}
{{ user.name }}
{% endif %} {% if user.country %}
{{ user.country }}
{% endif %} {% else %}
Account Holder
{% endif %}
ITEMS:
{% for item in order.items %} {% endfor %}
Product Qty Unit Price Amount
{{ item.product_name }}
{{ item.provider_name }} • {{ item.product_category|title }}
{{ item.quantity }} {{ item.unit_price }} {{ item.total_price }}
PAYMENT DETAILS:

Payment Method: {{ order.payment_method }}

Currency: {{ order.currency }}

Invoice generated: {{ generated_date }}

Subtotal: {{ order.subtotal }}
Platform fee: Free

TOTAL AMOUNT: {{ order.total }}
Invoice Actions
{% else %}

Order Not Found

The requested order could not be found.

View All Orders
{% endif %}