{% extends 'base.html.twig' %} {% block title %}Liste des sorties | {{ parent() }}{% endblock %} {% block body %} {% include 'outing/search.html.twig' with {'formSearch':formSearch} only %} {% if outings|length == 0 %} Aucune sortie ne correspond à votre recherche {% else %} {% for outing in outings %} {% include 'outing/card.html.twig' with {'outing': outing} %} {% endfor %} {% endif %} {% endblock %}