{% extends "report/inventree_report_base.html" %} {% load i18n report %} {# Transport manifest line — the dangerous-goods description for a single stock item being moved. Model: StockItem Install: Admin Center > Reports > Report Templates > new template, model "Stock Item", and upload this file. NOTE: this renders the data InvenTree holds. It is an aid to preparing transport documentation, not a substitute for it: the consignor remains responsible for the dangerous-goods declaration. #} {% block style %} body { font-family: sans-serif; font-size: 10pt; } h1 { font-size: 16pt; } table { width: 100%; border-collapse: collapse; margin-top: 4mm; } th, td { border: 1px solid #999; padding: 2mm; text-align: left; } th { background: #eee; width: 40%; } .note { color: #555; font-size: 8pt; margin-top: 6mm; } .warn { color: #b00; } {% endblock style %} {% block page_content %}
| {% trans "Part" %} | {{ stock_item.part.name }} |
|---|---|
| {% trans "Batch" %} | {{ stock_item.batch|default:"-" }} |
| {% trans "UN number" %} | {{ explosives.un_number|default:"-" }} |
| {% trans "Proper shipping name" %} | {{ explosives.proper_shipping_name|default:"-" }} |
| {% trans "Classification code" %} | {{ explosives.classification_code|default:"-" }} |
| {% trans "Hazard division" %} | {{ explosives.division|default:"-" }} |
| {% trans "Compatibility group" %} | {{ explosives.compatibility_group|default:"-" }} |
| {% trans "Quantity" %} | {{ explosives.quantity }} |
| {% trans "Net explosive quantity" %} | {{ explosives.neq_total_kg|floatformat:3 }} kg |
| {% trans "Gross mass" %} | {{ explosives.gross_mass_total_kg|floatformat:3 }} kg |
{% trans "Generated from InvenTree inventory data. The consignor remains responsible for the dangerous goods declaration." %}
{% endblock page_content %}