{% extends 'admin/layout.twig' %} {% block title %}Manage TV Shows - Admin Panel - MediaLib{% endblock %} {% block content %}
View and manage your TV show library
| Poster | Title | First Aired | Seasons | Rating | Status | Actions |
|---|---|---|---|---|---|---|
|
{% if show.poster_path %}
|
{{ 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
|
||||||