{% extends "videotheque/base.html.twig" %} {% block title %}{{ parent() }} - Fiche film - {{ film.titre }}{% endblock %} {% block titre %} {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %} {% if film.usersWantToView.contains(app.user) %} {% set follow_icone = "fa fa-bookmark" %} {% set follow_texte = "Supprimer ce film de votre liste à voir" %} {% else %} {% set follow_icone = "fa fa-bookmark-o text-secondary" %} {% set follow_texte = "Ajouter ce film à votre liste à voir" %} {% endif %} {% if film.usersWhoSeen.contains(app.user) %} {% set vu_icone = '' %} {% else %} {% set vu_icone = '' %} {% endif %} {{ vu_icone | raw }} {% endif %} {{ film.titre }} {% if film.note > 0 %}

{% endif %} {% endblock %} {% block body %} {% if estEnSalle(film.dateSortie) %} {% endif %} {% if bientotEnSalle(film.dateSortie) %} {% endif %}
Fiche technique
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
{% if is_granted('ROLE_ADMIN') %}{% endif %}
{% endif %}
{% if film.annee %}
Année
{{ film.annee | date('Y') }}
{% endif %}
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 %} {% if film.dateSortie %}
Sortie
{{ film.dateSortie | date('d/m/y')}}
{% endif %}
Informations complémentaires
{% if film.information is not null %}

{{ film.information | nl2br }}

{% else %}

Pas d'information

{% endif %}
Bande Annonce
{% for mediaVideo in film.mediaVideos %}
{{ mediaVideo.video|raw }}
{% else %}

Pas encore de bande annonce

{% endfor %}
Commentaires
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}

{{ include('videotheque/form_commentaire.html.twig') }}
{% endif %}
{% for commentaire in film.commentaires %}

Posté par {{ commentaire.user.username }}

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

{{ commentaire.contenu | show_links | raw | sanitize_html | nl2br }}

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