{% extends 'admin/_layout.html.twig' %} {% block admin %}

Vidéos

+ Ajouter une vidéo
{% for video in videos %}
{# --- Miniature --- #}
{% if video.thumbnail %} {# Thumbnail généré automatiquement #} {{ video.title }} {% elseif video.youtubeId %} {# Thumbnail YouTube #} {{ video.title }} {% else %} {# Placeholder par défaut #}
🎬
{% endif %} {# Badge durée si disponible #} {% if video.duration %} {{ video.duration }} {% endif %}
{# --- Informations --- #}

{{ video.title }}

{{ video.createdAt|date('d/m/Y') }} {% if video.theme %} · {{ video.theme }} {% endif %} · {# Statut de publication #} {% if video.published %} Publiée {% else %} Brouillon {% endif %} {# Type de source #} · {% if video.videoFilename %} 📁 Fichier {% elseif video.youtubeId %} ▶ YouTube {% endif %} {# Taille du fichier si disponible #} {% if video.videoSize %} · {{ (video.videoSize / 1024 / 1024)|round(1) }} Mo {% endif %}
{# --- Actions --- #}
{# Bouton Voir (si c'est une vidéo YouTube) #} {% if video.youtubeId %} 👁️ {% endif %} {# Bouton Modifier #} Modifier {# Bouton Supprimer #}
{% else %} {# --- État vide --- #}
🎬

Aucune vidéo

Commencez par ajouter votre première vidéo.

+ Ajouter une vidéo
{% endfor %}
{# --- Statistiques (optionnel) --- #} {% if videos is not empty %}

{{ videos|length }}

Total vidéos

{{ videos|filter(v => v.published)|length }}

Publiées

{{ videos|filter(v => not v.published)|length }}

Brouillons

{{ videos|filter(v => v.videoFilename)|length }}

Fichiers uploadés

{% endif %} {% endblock %}