{% extends 'base.html.twig' %} {% block title %}Nouveau repas — Garde-manger{% endblock %} {% block theme_color %}#f5f5f4{% endblock %} {% block body_class %}bg-stone-100 text-stone-900 dark:bg-stone-950 dark:text-stone-100{% endblock %} {% block body %} {% embed 'ui/index_shell.html.twig' with { title: 'Nouveau repas', eyebrow: 'Repas', subtitle: 'Nom, date puis aliments à déduire du stock.', accent_rgb: '245,158,11', back_href: path('front.pantry.meal.index'), } %} {% block index_card %}

Aliments

{% if categories is not empty %}
{% for cat in categories %} {% endfor %}
{% endif %}
{% set inStock = items|filter(i => i.stockQuantity > 0) %} {% set outStock = items|filter(i => i.stockQuantity <= 0) %} {% if inStock is empty and outStock is empty %}

Aucun article dans le garde-manger

Ajouter des articles →
{% else %}
{% for item in inStock %}
{% if item.nutriscoreGrade %} {{ item.nutriscoreGrade|upper }} {% endif %} {% if item.imageUrl %} {{ item.name }} {% else %}
{% endif %}

{{ item.name }}

{% if item.brand %}

{{ item.brand }}

{% endif %}

{{ item.stockQuantity }}{% if item.stockUnit %} {{ item.stockUnit }}{% else %}×{% endif %} restant{{ item.stockQuantity > 1 ? 's' : '' }}

{% endfor %} {% for item in outStock %}
{% if item.imageUrl %} {{ item.name }} {% else %}
{% endif %}

{{ item.name }}

Rupture de stock

{% endfor %}
{% endif %} {% if items is not empty %} {% endif %}

Aucune sélection

{% endblock %} {% endembed %} {% endblock %}