{% extends 'base.html.twig' %}
{% block title %}Films Show - CinéDevRT{% endblock %}
{% block body %}
<main id="movieShow">
<div class="title1">
<h1> {{ movie.title }} </h1>
</div>
<div id="movieInfo">
<div> <img src="{{ asset('uploads/' ~ movie.file) }}"> </div>
<div>
<p> Réalisé par : {{ movie.realisedBy }} </p>
<p> Durée : </p>
<p> Synopsis : </p>
<p> {{ movie.content }} </p>
</div>
</div>
<div id="seancesAndNote">
<div id="seances">
<div class="title1">
<h2> Les séances </h2>
</div>
<div>
{% if allSessionsByMovie %}
{% for session in allSessionsByMovie %}
<a href="{{ path('userReservation', {id: session.id}) }}"> {{ session.hours|date('H:i') }} </a>
{% endfor %}
{% else %}
<p class="center"> Aucune séance n'est disponible </p>
{% endif %}
</div>
</div>
<div id="note">
{% if not app.user %}
<div class="title1">
<h2> Votre avis </h2>
</div>
<div>
<p> Veuillez vous connecter pour donner une note</p>
<button> <a href="{{ path('app_login') }}"> Se connecter </a> </button>
</div>
{% elseif notesStatus == 1 %}
<div class="title1">
<h2> Votre avis </h2>
</div>
<div>
<p> Vous avez déjà donné une note pour ce film</p>
<button> Changer mon avis </button>
</div>
{# Le faire en JS, cacher le form et l'ouvrir quand il appuie #}
{% elseif notesStatus == 0 %}
<div class="title1">
<h2> Votre avis </h2>
</div>
<div>
{{ include('admin/note/_form.html.twig') }}
</div>
{% endif %}
</div>
</div>
<div id="noteOfUsers">
<div class="title1">
<h2> Notes des utilisateurs </h2>
</div>
{% if allNotesByMovie %}
<ul>
{% for note in allNotesByMovie %}
<li>
<div> <img src=""> </div>
<div>
<p> {{ note.IdUser.username }} - {{ note.note }}/5
<hr>
<p> {{ note.noteDesc }} </p>
</div>
</li>
{% endfor %}
</ul>
{% else %}
<p class="center"> Aucune note n'a était donné sur ce film </p>
{% endif %}
</div>
</main>
{% endblock %}