{% extends 'base.html.twig' %} {% block body %}

{{ proposition.title }}

{{ proposition.title }}
{{ proposition.content | raw }}


({{ proposition.comments | length }}) Commetaires :

{% for comment in proposition.comments %}
{{comment.author}} ( {{comment.createdAt | date ('d/m/Y à H:i')}} )
{{comment.content | raw}}
{% endfor %}

{% if app.user %}

Commenté !

{{ form_start(commentForm) }} {{ form_row(commentForm.author, {'attr': {'placeholder': "Votre nom"}})}}
{{ form_row(commentForm.content, {'attr': {'placeholder': "Votre Commentaire"}})}}
{{form_end(commentForm)}} {% else %}

Connectez-vous pour pouvoir commenter


Connexion

{% endif %}
{% endblock %}