{% 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') }}
{% for film in listeFilms %}

{{ film.titre }} {% if film.new %}New{% endif %}

{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %} {% endif %}
{% if film.information %} {% endif %} {% if film.dateSortie %} {% 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 {{ film.information | nl2br }}
Date de sortie {{ film.dateSortie | date('d/m/y')}}
{% endfor %}
{% endblock %}