{% extends 'admin/layout.twig' %} {% block title %}Manage Adult Videos - Admin Panel - MediaLib{% endblock %} {% block content %}

Manage Adult Videos

View and manage your adult video library

Add New Video
{# Search and Filters #}
{% if flash.getMessage('success') %}
{{ flash.getMessage('success') | first }}
{% endif %}
{% for video in videos %} {% else %} {% endfor %}
Thumbnail Title Director Genre Rating Release Date Actions
{% if video.poster_url %} {{ video.title }} {% else %}
{% endif %}
{{ 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
{% if pagination.total > 1 %}
Showing {{ pagination.from }} to {{ pagination.to }} of {{ pagination.total_items }} videos
{% endif %}
{% endblock %}