{% extends "layout.html.twig" %} {% block title %}{{ episode.title }}{% endblock %} {% block content %}
Retour à la liste

Billet simple pour l'Alaska

de Jean FORTEROCHE

{{ episode.title }}

{{ episode.content | raw }}

Ajouter un commentaire

{{ form_start(commentForm, { 'attr': {'class': 'form-inline row'} })}}
{{ form_widget(commentForm.idparent, { 'attr': { 'class': 'form-control', 'value': '0' }}) }} {{ form_errors(commentForm.idparent) }}
{{ form_widget(commentForm.author, { 'attr': { 'class': 'form-control form-chp-comment', 'placeholder': 'Entrer votre nom', 'value': '', 'pattern': '^[^ ]{2}.*$' }}) }} {{ form_errors(commentForm.author) }}
{{ form_widget(commentForm.content, { 'attr': { 'class': 'form-control form-chp-comment', 'placeholder': 'Entrer votre commentaire', 'value': '', 'pattern': '^[^ ]{2}.*$' }}) }} {{ form_errors(commentForm.content) }}
{{ form_end(commentForm) }}

Commentaires

{% for comment in comments %}
{{ comment.author }} : ({{ comment.dateCreated}})
{{ comment.content }}
{% if (niveaux[loop.index0] != 'Niv3' ) %}
{% if comment.comAModerer==0 %} {% endif %}
{% else %} {% if comment.comAModerer==0 %}
{% endif %} {% endif %}
{% else %} Soyez le premier à laisser un commentaire. {% endfor %}
{% endblock %}