{% extends "videotheque/base.html.twig" %} {% block stylesheets %} {{ encore_entry_link_tags('vuejs') }} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('vuejs') }} {% endblock %} {% block title %}{{ parent() }} - Fiche film - {{ film.titre }}{% endblock %} {% block titre %}
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
{% endif %} {{ film.titre }}
{% if film.note > 0 %}

{% endif %} {% endblock %} {% block body %} {% if estEnSalle(film.dateSortie) %} {% endif %}
Fiche technique
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
{% if is_granted('ROLE_ADMIN') %}{% endif %}
{% endif %}
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 %} {% 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
{% if film.mediaVideo.video is defined %}
{{ film.mediaVideo.video|raw }}
{% else %}

Pas encore de bande annonce

{% endif %}
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 %}