{% extends "videotheque/base.html.twig" %} {% block title %}Fiche film - {{ film.titre }}{% endblock %} {% block titre %} {% if film.usersWantToView.contains(app.user) %} {% set follow_icone = "fa fa-star" %} {% set follow_texte = "Supprimer ce film de votre liste à voir" %} {% else %} {% set follow_icone = "fa fa-star-o" %} {% set follow_texte = "Ajouter ce film à votre liste à voir" %} {% endif %} {{ film.titre }} {% if film.usersWhoSeen.contains(app.user) %} {% set vu_icone = 'Pas vuVu' %} {% else %} {% set vu_icone = 'Pas vuVu' %} {% endif %} {{ vu_icone | raw }} {% 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('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 %}