{% if decoded is not empty %}
{% trans %}label_scanner.part_info.title{% endtrans %}
{% if createUrl %}
{% endif %}
{% if found %}
{% if locations is not empty %}
| {% trans %}part_lots.storage_location{% endtrans %} |
{% trans %}part_lots.amount{% endtrans %}
|
{% for loc in locations %}
|
|
{% if loc.qty is not null %}{{ loc.qty }}{% else %}—{% endif %}
|
{% endfor %}
{% else %}
{% trans %}label_scanner.no_locations{% endtrans %}
{% endif %}
{% else %}
{% trans %}label_scanner.qr_part_no_found{% endtrans %}
{% endif %}
{# Decoded barcode fields #}
{% for key, value in decoded %}
| {{ key }} |
{{ value }} |
{% endfor %}
{# Whitespace under table and Input form fields #}
{% endif %}