{{ film.titre }} {% if film.new %}New{% endif %}
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
{% if app.user.haveSeen(film) %}
{% set vu_icone = '' %}
{% else %}
{% set vu_icone = '' %}
{% endif %}
{% if app.user.wantToSee(film) %}
{% set follow_icone = "fa fa-bookmark fa-lg" %}
{% set follow_texte = "Supprimer ce film de votre liste à voir" %}
{% else %}
{% set follow_icone = "fa fa-bookmark-o text-secondary fa-lg" %}
{% set follow_texte = "Ajouter ce film à votre liste à voir" %}
{% 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 %} |
Informations | {% if film.information %}{{ film.information | nl2br }}{% else %}Pas d'information{% endif %} |
Date de sortie | {{ film.dateSortie | date('d/m/y')}} |