{% extends 'app/base.html.twig' %} {% block title %}Tarifs restauration{% endblock %} {% block body %}

Tarifs restauration

Grille tarifaire par service et catégorie
Nouveau tarif
{% set services = {'dejeuner': 'Déjeuner', 'diner': 'Dîner', 'petit_dejeuner': 'Petit-déjeuner', 'gouter': 'Goûter'} %} {% if grouped is empty %}
Aucun tarif enregistré
{% else %} {% for serviceKey, label in services %} {% if grouped[serviceKey] is defined %}
{{ label }}
{% for tarif in grouped[serviceKey] %} {% endfor %}
Nom Type Montant TTC Statut Actions
{{ tarif.nom }} {% if tarif.description %}
{{ tarif.description }} {% endif %}
{{ tarif.type }} {{ tarif.montant|number_format(2, ',', ' ') }} € {% if tarif.actif %} Actif {% else %} Inactif {% endif %}
{% endif %} {% endfor %} {% endif %} {% endblock %}