{% set title, page_active, page_categorie = 'Aucun titre', '', '' %} {% extends 'base_admin.html.twig' %} {% block title_1 %}Liste des matières{% endblock %} {% block title %}Matière{% endblock %} {% block body %}

Matière

{% set alert = app.flashes('successMessage') %} {% if alert is not empty %} {{ alert[0] | bootstrapAlert }} {% endif %}
{% for matiere in matieres %} {% endfor %}
Id Nom(s) Code Actions
{{ matiere.id }} {{ matiere.nomMat }} {{ matiere.codeMat }}
Ajouter matière
{% endblock %}