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

Manage TV Shows

View and manage your TV show library

Add New Show
{# Search and Filters #}
{% if flash.getMessage('success') %}
{{ flash.getMessage('success') | first }}
{% endif %}
{% for show in shows %} {% else %} {% endfor %}
Poster Title First Aired Seasons Rating Status Actions
{% if show.poster_path %} {{ show.title }} {% else %}
{% endif %}
{{ show.title }}
{{ show.network ? show.network : 'N/A' }}
{{ show.first_air_date ? show.first_air_date|date('Y') : 'N/A' }} {{ show.number_of_seasons ?? '0' }} {% if show.vote_average %} {{ show.vote_average|number_format(1) }}/10 {% else %} N/A {% endif %} {% if show.status == 'Returning Series' %} Ongoing {% elseif show.status == 'Ended' %} Ended {% else %} {{ show.status ?? 'N/A' }} {% endif %}
No TV shows found. Add your first show
{% if pagination.total > 1 %}
Showing {{ pagination.from }} to {{ pagination.to }} of {{ pagination.total_items }} shows
{% endif %}
{% endblock %}