{# templates/film/detail.html.twig #} {% extends 'base.html.twig' %} {% block title %}{{ film.title }}{% endblock %} {% block body %}

{{ film.title }}

{{ film.title }} image

{{ film.overview }}

Date de sortie: {{ film.release_date }}

Durée: {{ film.runtime }} minutes

Note: {{ film.vote_average }} ({{ film.vote_count }} votes)

Langue originale: {{ film.original_language }}

Titre original: {{ film.original_title }}

Status: {{ film.status }}

Budget: {{ film.budget | number_format(0, ',', ' ') }} $

Recettes: {{ film.revenue | number_format(0, ',', ' ') }} $

Genres: {% for genre in film.genres %} {{ genre.name }}{% if not loop.last %}, {% endif %} {% endfor %}

Compagnies de production: {% for company in film.production_companies %} {{ company.name }}{% if not loop.last %}, {% endif %} {% endfor %}

Pays de production: {% for country in film.production_countries %} {{ country.name }}{% if not loop.last %}, {% endif %} {% endfor %}

Collection: {% if film.belongs_to_collection is not null %} {{ film.belongs_to_collection.name }}{% else %}N/A {% endif %}

Site web officiel: {% if film.homepage is not empty %} {{ film.homepage }} {% else %}N/A {% endif %}

{% if is_granted('IS_AUTHENTICATED_FULLY') %} {% if isFavorite %}

Ce film est dans vos favoris.

{% else %}
{% endif %} {% if not is_granted('ROLE_ADMIN') %} Ajouter un avis {% endif %} {% endif %}

Bande-annonce

{% set trailerFound = false %} {% if film.videos is not empty %} {% for video in film.videos %} {% if video.type == 'Trailer' and not trailerFound %} {% set trailerFound = true %} {% endif %} {% endfor %} {% endif %} {% if not trailerFound %}

Aucune bande-annonce disponible.

{% endif %}

Réalisateur(s)

{% if film.directors is not empty %} {% for director in film.directors %}
{% if director.profile_path %} {{ director.name }} photo {% else %} {{ director.name }} photo par défaut {% endif %}

{{ director.name }}

{% endfor %} {% else %}

Aucun réalisateur trouvé.

{% endif %}

Acteurs principaux

{% if film.cast is not empty %} {% for actor in film.cast %}
{% if actor.profile_path %} {{ actor.name }} photo {% else %} {{ actor.name }} photo par défaut {% endif %}

{{ actor.name }} as {{ actor.character }}

{% endfor %} {% else %}

Aucun acteur trouvé.

{% endif %}

Commentaire

{% for avi in avis %}

{{ avi.utilisateur.email }}:

{{ avi.commentaire }}

Reviewed on {{ avi.dateDeCreation|date('Y-m-d H:i') }}

{% if is_granted('IS_AUTHENTICATED_FULLY') and avi.utilisateur == app.user %} Edit
{% elseif is_granted('IS_AUTHENTICATED_FULLY') and is_granted('ROLE_ADMIN') %}
{% elseif is_granted('IS_AUTHENTICATED_FULLY') %} Signaler {% endif %}
{% else %}

Aucun avis pour l'instant.

{% endfor %}

Recommandations

{% if film.recommendations is not empty %} {% for recommendation in film.recommendations %} {% endfor %} {% else %}

Aucune recommandation trouvée.

{% endif %}
{% endblock %} {% block javascript %} {% endblock %}