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

Manage Movies

View and manage your movie library

Add New Movie
{% if flash.success %}
{{ flash.success }}
{% endif %}
Showing {{ pagination.from }} to {{ pagination.to }} of {{ pagination.total_items }} movies
{% for movie in movies %} {% else %} {% endfor %}
Poster Title Year Rating Runtime Actions
{% if movie.poster_path %} {{ movie.title }} {% else %}
{% endif %}
{{ movie.title }} {{ movie.release_date|date('Y') }} {% if movie.vote_average %} {{ movie.vote_average|number_format(1) }}/10 {% else %} N/A {% endif %} {{ movie.runtime ? movie.runtime ~ ' min' : 'N/A' }}
No movies found. Add your first movie
{% if pagination.total > 1 %} {% endif %}
{% endblock %}