{% extends "@App/videotheque/base.html.twig" %} {% block title %}Fiche film{% endblock %} {% block titre %}{% endblock %} {% block body %}

{% if film.usersWantToView.contains(app.user) %} {% else %} {% endif %} {{ film.titre }} {% if film.usersWhoSeen.contains(app.user) %} Pas vuVu {#Vu#} {% else %} Pas vuVu {#Pas vu#} {% endif %}

Fiche technique
Réalisateur(s)
{% for realisateur in film.realisateurs %}
{{ realisateur.nomComplet }}
{% endfor %}
Année
{{ film.annee | date('Y') }}
Genre
{% for genre in film.genres %}
{{ genre.name }}
{% endfor %} {% if film.lien is not null %}
Lien
{% endif %}
Bande Annonce
{% if film.mediaVideo.video is defined %}
{{ film.mediaVideo.video|raw }}
{% else %}

Pas encore de bande annonce

{% endif %}

Commentaires

{{ include('@App/videotheque/form_commentaire.html.twig') }}
{% for commentaire in commentaires %}
{#{% if commentaire.user == app.user %} {% endif %}#}
Posté par {{ commentaire.user.username }}

{{ commentaire.contenu }}

{% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}