{% extends 'base.html.twig' %}
{% block title %}Films - CinéDevRT{% endblock %}
{% block body %}
<main>
<section id="onDisplay">
<div> <h2> Films à l'affiche </h2> </div>
<section>
{% for movie in movies %}
<div>
<div> <img src="{{ asset('uploads/' ~ movie.file) }}"> </div>
<div>
<h3> {{ movie.title }} </h3>
<div>
<div> <strong> Durée : </strong> 2h </div>
<div> <strong> Genres : </strong> Fantaisie, Action </div>
<div> <strong> Réalisateurs : </strong> {{ movie.realisedBy }} </div>
</div>
<a href="{{ path('filmsShow', {id: movie.id}) }}"> Séances </a>
</div>
</div>
{% endfor %}
</section>
</section>
</main>
{% endblock %}