{% extends "videotheque/base.html.twig" %} {% block stylesheets %} {{ encore_entry_link_tags('vuejs') }} {% endblock %} {% block javascripts %} {{ encore_entry_script_tags('vuejs') }} {% endblock %} {% block title %} {% if titre is defined %}{{ parent() }} - {{ titre }}{% else %}{{ parent() }}{% endif %} {% endblock %} {% block titre %} {% if titre is defined %}{{ titre }}{% else %}{{ parent() }}{% endif %} {% endblock %} {% block body %} {{ include ('videotheque/_liste_header.html.twig') }}
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %} {% endif %} {% for film in listeFilms %} {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %} {% endif %} {% endfor %}
Ajouté parTitre Genre Réalisateur Note Année Sortie
{% if film.authered is defined %} {% if film.authered.activeNow %} {% else %} {% endif %} {{ film.authered.username }} {% endif %} {{ film.titre }} {% if film.new %}New{% endif %} {% if estEnSalle(film.dateSortie) %}En salle{% endif %} {% if film.nbComs %}{{ film.nbComs }}{% endif %} {% if film.genres is defined %} {% for genre in film.genres %} {{ genre.name }} {% endfor %} {% endif %} {% if film.realisateurs is defined %} {% for realisateur in film.realisateurs %} {{ realisateur.nomComplet }} {% endfor %} {% endif %} {% if film.note > 0 %} {% endif %} {{ film.annee | date('Y') }} {% if film.dateSortie %}{{ film.dateSortie | date('d/m/y')}}{% endif %}
{% endblock %}