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