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



{{ proposition.title }}

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

{% if proposition.DateFinVote|date('Y-m-d') < "now"|date('Y-m-d') %}
Pour - {{proposition.PourcentagePour}}% {{proposition.PourcentagePour}}%

Contre - {{proposition.PourcentageContre}}%

{% endif %}
{% if proposition_vote is not null %}

Votre vote a été pris en compte {{app.user.username}}

{% else %} {% if proposition.DateFinVote|date('Y-m-d') > "now"|date('Y-m-d') %} POUR CONTRE
{% endif %} {% endif %}

({{ 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 %}