{% extends 'admin/layout.twig' %} {% block title %}Manage Adult Videos - Admin Panel - MediaLib{% endblock %} {% block content %}
View and manage your adult video library
| Thumbnail | Title | Director | Genre | Rating | Release Date | Actions |
|---|---|---|---|---|---|---|
|
{% if video.poster_url %}
|
{{ video.title }}
{{ video.runtime_minutes ? video.runtime_minutes ~ ' min' : 'N/A' }}
|
{{ video.director ?? 'N/A' }} | {{ video.genre ?? 'N/A' }} | {% if video.rating %} {{ video.rating|number_format(1) }}/10 {% else %} N/A {% endif %} | {{ video.release_date ? video.release_date|date('Y-m-d') : 'N/A' }} | |
|
No videos found. Add your first video
|
||||||