{% extends "admin/base.html.twig" %} {% block title %}Fiche formation | Admin TDY{% endblock %} {% block body %} {% for message in app.flashes('success') %} {{ message }} {% endfor %} Les fiches formations Ajouter une fiche formation {% for fiche in fiches %} {{ fiche.nom }} {{ fiche.sousTitre|slice(0, 50) }} {% for centre in fiche.centre %} {{ centre.nom }} {% endfor %} {% for domaine in fiche.domaines %} {{ domaine.nom }} {% endfor %} {% endfor %} {% endblock %}