{% extends 'base.html.twig' %} {% block title %}Vidéos {% endblock %} {% block body %}
{% include "partials/dropdowns_menu.html.twig" %}

Vidéos - {{ videos|length }}

Ajouter une vidéo

Vidéos - {{ videos|length }}

{% for video in videos %}
{{ video.studio.name }}
{% if video.picture %} {{ video.name }} {% else %} Pas d'image {% endif %}

{{ video.name }}

{{ video.createdAt ? video.createdAt|date('d/m/Y') : 'Annee inconnue' }} - {{ video.duration ? video.duration : 'Durée inconnue' }}
Acteurs : {% for actor in video.actors %} {{ actor.name }} {% if not loop.last %}, {% endif %} {% endfor %}
Tags : {% for tag in video.tags %} {{ tag.name }} {% if not loop.last %}, {% endif %} {% endfor %}
{{ video.story|slice(0, 100) }}...
Voir Modifier {{ include('videos/_delete_form.html.twig') }}
{% else %}

Aucune vidéo trouvée.

{% endfor %}
{% endblock %}