{% extends "base.html.twig" %} {% block styleSheets %} {{ parent() }} {% endblock %} {% block title %}{{ question.title }}{% endblock %} {% block body %}
{% include "partials/_rating.html.twig" with { rating: question.rating, from: 'question', id: question.id } %}

{{ question.title }}

QUESTION
{# Bouton Effacer #} {% if app.user and (question.author.id == app.user.id or is_granted('ROLE_ADMIN')) %}
{% endif %}

{{ question.content }}

{% if question.comments is not empty %}
{% endif %} {% for comment in question.comments %} {% endfor %} {% if form is defined %}

Votre réponse

{{ form_start(form)}} {{ form_rest(form) }} {{ form_end(form)}}
{% endif %}
{% endblock %}