{{ film.title }}
{{ 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
Aucune bande-annonce disponible.
{% endif %}Réalisateur(s)
{{ director.name }}
Aucun réalisateur trouvé.
{% endif %}Acteurs principaux
{{ actor.name }} as {{ actor.character }}
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 %}Aucun avis pour l'instant.
{% endfor %}Recommandations
Aucune recommandation trouvée.
{% endif %}