{% extends "shop/print/base.html" %} {% load i18n shop_tags %} {% block title %}{% trans "Invoice" %} {{ order.get_number }}{% endblock %} {% block content %}
{{ order.billing_address_text }}
{% trans "Invoice" %}: {{ order.number }}
{% block print-order-body %} {% for item in order.items %}
{{ item.quantity }}×
{{ item.summary.media }}
{{ item.unit_price }}
{{ item.line_total }}
{% for _, extra_row in item.extra.rows %}
{{ extra_row.label }}
{{ extra_row.amount }}
{% endfor %}
{% endfor %} {% endblock print-order-body %} {% block print-order-foot %}
{% trans "Subtotal" %}
{{ order.subtotal }}
{% for key, extra_row in order.extra.rows %}
{{ extra_row.label }}
{{ extra_row.amount }}
{% endfor %}
{% trans "Total" %}
{{ order.total }}

{% trans "Payment Method" %}: {{ order.active_payment_method.label }}

{% trans "Ordered on" %}: {{ order.created_at|date }}

{% endblock print-order-foot %} {% endblock content %}