+
+
 ?? asset('img/part_placeholder.svg') }})
+
+
+
+
+
{{ part.name }}
+
{{ part.description | format_markdown(true) }}
+
+
+ {% trans %}category.label{% endtrans %}
+
+
+
+ {{ helper.structural_entity_link(part.category) }}
+
+
+
+
+
+ {% trans %}footprint.label{% endtrans %}
+
+
+
+ {{ helper.structural_entity_link(part.footprint) }}
+
+
+
+ {# Show part lots / locations #}
+ {% if part.partLots is not empty %}
+
+
+
+ | {% trans %}part_lots.storage_location{% endtrans %} |
+
+ {% trans %}part_lots.amount{% endtrans %}
+ |
+
+
+
+ {% for lot in part.partLots %}
+
+ |
+ {% if lot.storageLocation %}
+ {{ helper.structural_entity_link(lot.storageLocation) }}
+ {% else %}
+ —
+ {% endif %}
+ |
+
+ {% if lot.instockUnknown %}
+ ?
+ {% else %}
+ {{ lot.amount | format_amount(part.partUnit, {'decimals': 5}) }}
+ {% endif %}
+ |
+
+ {% endfor %}
+
+
+ {% else %}
+
{% trans %}label_scanner.no_locations{% endtrans %}
+ {% endif %}
+
+
+