{% extends 'admin/tools/layout.html.twig' %} {% block title %}Bestandsliste{% endblock %} {% block content %}

Bestandsliste


{% if inStock is not empty %}
Es werden nur Stickgarnkonen mit Bestand angezeigt. (Gesamt: {{ inStockColor|length }} Farben)
{% for row in inStock %} {% endfor %}
Farbnummer Farbname Hersteller Bestand Größe
{{ row.colorReference.colorNumber }} {{ row.colorReference.colorName }} {{ row.colorReference.manufacturer.manufacturer }} {{ row.stock }} Stk. {{ row.coneSize }} m
{% else %}
Keine Daten zum Anzeigen gefunden.
{% endif %}
{% endblock %}