{{ 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 %}
{% if film.nbComs %}
{{ film.nbComs }} commentaire{% if film.nbComs > 1 %}s{% 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 %} |