{% extends 'base.html.twig' %} {% block title %} {{ video.name }} {% endblock %} {% block body %}
{% if video.picture %} {{ video.name }} {% else %}
Pas de miniature
{% endif %}

{{ video.name }}

Durée : {{ video.duration }}

Studio : {% if video.studio %} {{ video.studio.name }} {% else %} Inconnu {% endif %}

Date de sortie : {{ video.createdAt ? video.createdAt|date('d/m/Y') : 'Inconnue' }}

Tags

{% for tag in video.tags %} {{ tag.name }} {% else %} Aucun tag {% endfor %}

Description

{{ video.story|default('Aucune description disponible.') }}

Acteurs

{% for actor in video.actors %}
{% if actor.photo %} {{ actor.name }} {% else %} No photo {% endif %}
{% else %}

Aucun acteur renseigné.

{% endfor %}
← Retour à la liste
Modifier {{ include('videos/_delete_form.html.twig') }}
{% endblock %}