{% extends 'base.html.twig' %} {% block title %}{{ parent() }} | Accueil{% endblock %} {% block body %}

Au menu ce soir

{% for article in articles %} {% if article.categorie.id == app.request.server.get('ENTREE') and article.quantity > 0 %} {% endif %} {% endfor %}
{% for article in articles %} {% if article.categorie.id == app.request.server.get('PLAT') and article.quantity > 0 %} {% endif %} {% endfor %}
{% for article in articles %} {% if article.categorie.id == app.request.server.get('DESSERT') and article.quantity > 0 %} {% endif %} {% endfor %}
{% for article in articles %} {% if article.categorie.id == app.request.server.get('ACCOMPAGNEMENT') and article.quantity > 0 %} {% endif %} {% endfor %}
{% endblock %}