{% extends 'base.html.twig' %} {% block title %}{{ episode.title }}{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %}
{{ episode.title }}

{{ episode.title }}

Publié le {{ episode.createdAt|date('d/m/Y') }}

Nombre de lectures : {{ episode.viewCount }}

Description

{{ episode.description | raw }}

{# Partie commentaires dans show.html.twig #}

Commentaires

{# Liste des commentaires #}
{% if episode.commantaire|length > 0 %} {% for comment in episode.commantaire %}
{{ comment.pseudo }}
{{ comment.date|date('d/m/Y H:i') }} {% if is_granted('ROLE_ADMIN') %} {% endif %}

{{ comment.message }}

{% endfor %} {% else %}

Aucun commentaire pour cet épisode.

{% endif %}
{# Formulaire de commentaire #} {{ form_start(commentForm, { attr: { 'data-turbo-frame': 'comment-form-' ~ episode.id, 'class': 'comment-form' } }) }}
{{ form_row(commentForm.pseudo) }}
{{ form_row(commentForm.message, {'attr': {'class': 'form-control ckeditor'}}) }}
{{ form_end(commentForm) }}
{% if is_granted('ROLE_ADMIN') %} Modifier l'épisode {% endif %} Retour à l'accueil
{# Container pour les toasts #}
{% endblock %}