{% extends 'app/base.html.twig' %} {% block title %}Configuration des équipements HACCP{% endblock %} {% block body %}
Gérez vos équipements de cuisine pour personnaliser les formulaires
| Nom | Type | Zone | T° min | T° max | Statut | {% if is_granted('ROLE_TENANT_GESTIONNAIRE') %}Actions | {% endif %}
|---|---|---|---|---|---|---|
| {{ eq.nom }} | {{ types[eq.type] ?? eq.type }} | {{ eq.zone ?: '—' }} | {{ eq.temperature_min is not null ? eq.temperature_min ~ ' °C' : '—' }} | {{ eq.temperature_max is not null ? eq.temperature_max ~ ' °C' : '—' }} | {% if eq.actif %} Actif {% else %} Inactif {% endif %} | {% if is_granted('ROLE_TENANT_GESTIONNAIRE') %}{% endif %} |