{% extends "@App/videotheque/base.html.twig" %} {% block title %}Fiche film - {{ film.titre }}{% endblock %} {% block titre %} {% 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 %} {% if film.note > 0 %}

{% endif %} {% endblock %} {% block body %}
Fiche technique
Année
{{ film.annee | date('Y') }}
Réalisateur(s)
{% for realisateur in film.realisateurs %} {{ realisateur.nomComplet }} {% endfor %}
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 }}

{% if commentaire.note > 0 %} {% endif %} {% if commentaire.contenu != "" %}

{{ commentaire.contenu }}

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