{% extends 'base.html.twig' %}{% block title %}Filiere{% endblock %}{% block body %} <h1>Filiere</h1> <table class="table"> <tbody> <tr> <th>Id</th> <td>{{ filiere.id }}</td> </tr> <tr> <th>Libelle</th> <td>{{ filiere.libelle }}</td> </tr> </tbody> </table> <a href="{{ path('app_filiere_index') }}">back to list</a> <a href="{{ path('app_filiere_edit', {'id': filiere.id}) }}">edit</a> {{ include('filiere/_delete_form.html.twig') }}{% endblock %}