{# templates/app/stocks/form.html.twig #} {% extends 'app/base.html.twig' %} {% set is_edit = stock and stock.id is defined %} {% block title %}{{ is_edit ? 'Modifier l\'article' : 'Nouvel article' }} — GestRestoSco{% endblock %} {% block body %}

{{ is_edit ? 'Modifier « ' ~ stock.produit ~ ' »' : 'Nouvel article en stock' }}

Retour
{% set categorieActive = stock.categorie ?? categorieSuggeree ?? '' %} {% if categorieSuggeree is defined and categorieSuggeree is not null and not stock.categorie %}
Catégorie suggérée depuis la mercuriale : {{ categorieSuggeree }}
{% endif %}
€ HT
€ TTC
{# /row #}
Annuler
{% endblock body %}