{% extends "report/inventree_order_report_base.html" %} {% load i18n %} {% load report %} {% load barcode %} {% load inventree_extras %} {% load markdownify %} {% block style %} .header-right { text-align: right; float: right; } .logo { height: 20mm; vertical-align: middle; } .thumb-container { width: 32px; display: block; margin: auto } .part-thumb { max-width: 32px; max-height: 32px; display: inline; } .part-text { display: inline; } .items-table { border: 1px solid #eee; border-radius: 3px; border-collapse: collapse; width: 100%; font-size: 80%; } .items-table td { border: 1px solid #eee; vertical-align: center; } .items-table td.shrink { white-space: nowrap } .items-table td.expand { width: 99% } .header-table { border: 0px; text-align: left; float: left; vertical-align: bottom; } .header-table td { border: 0px; width: fit-content; } {% endblock style %} {% block header_style %} width: 100%; margin-top: -2.5cm; {% endblock %} {% block header_content %}
Skyward Logo

Skyward

Experimental Rocketry

Project Lyra Patch
Supplier:

{% if supplier %}{{ supplier.name }}{% else %}{% trans "Supplier was deleted" %}{% endif %}

Description: {{ description }}
{% endblock header_content %} {% block page_content %}

{% trans "Items" %}

{% for line in lines.all %} {% endfor %} {% if extra_lines %} {% for line in extra_lines.all %} {% endfor %} {% endif %}
{% trans "Part" %} {% trans "Description" %} {% trans "Quantity" %} {% trans "Total Price" %}
{% trans 'Part image' %}
{% if line.part.link %} {{ line.part.part.full_name }} {% else %} {{ line.part.part.full_name }} {% endif %}
{{ line.part.part.description }} {% decimal line.quantity %} {% render_currency line.total_line_price currency=order.currency decimal_places=2 %}
{% trans "Extra Line Items" %}
{{ line.reference }} {% decimal line.quantity %} {% render_currency line.total_line_price currency=order.currency decimal_places=2 %}
{% trans "Total" %} {% render_currency order.total_price currency=order.currency decimal_places=2 %}
{% endblock page_content %}