{% extends 'base.html.twig' %} {% block title %}Gestion des Questions{% endblock %} {% block body %}

Gestion des Questions

{% for question in questions %} {% endfor %}
ID Titre Auteur Actions
{{ question.id }} {{ question.title }} {{ question.author.fullname }}
{% endblock %}