{% import 'macros/blocks.html.twig' as blocks %} {% import 'macros/elements.html.twig' as elements %} {% block content %} {% for label, flashes in app.session.flashbag.all %} {% for flash in flashes %} {{ elements.flash(label,flash) }} {% endfor %} {% endfor %}
{{ 'set.download.unicolor.button' | trans}}
{% if models|length > 0 %}

{{ 'set.inventory.models' | trans }}

{% for model in models %} {{ blocks.model(model['model'],model['quantity']) }} {% endfor %}
{% endif %} {% if missing|length > 0 %}

{{ 'set.inventory.parts' | trans }}

{% for part in missing %} {{ blocks.part(part['part'],part['quantity']) }} {% endfor %}
{% endif %} {% endblock %}