{% extends 'base.html.twig' %} {% block title %} {{ studio.name }} {% endblock %} {% block body %}
{% if studio.logo %} {{ studio.name }} {% else %}
Aucun logo
{% endif %}

{{ studio.name }}

Vidéos du studio - {{ allVideos|length }} vidéo{{ allVideos|length > 1 ? 's' : '' }}

{% for video in allVideos %}
Vidéo {{ video.name }}

{{ video.name}}

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 %}
Sortie le :

{{ video.createdAt|format_datetime(locale='fr',pattern='d MMMM Y') }}

Durée :

{{ video.duration }}

{{ video.story|slice(0, 55) }}...

{% else %}

Aucune vidéo trouvée.

{% endfor %}
{% endblock %}