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

{{ title }}

{{ show ? 'Edit TV show details' : 'Add a new TV show to your library' }}

Back to Shows
{% if flash.getMessage('success') %}
{{ flash.getMessage('success') | first }}
{% endif %}
Example: Drama, Crime, Mystery
{% if show %} {% endif %}
Poster Preview
{% if show and show.poster_url %} Poster {% else %}
No poster available
{% endif %}
Metadata
Created: {{ show ? show.created_at|date('Y-m-d H:i') : 'New' }}
Last Updated: {{ show ? show.updated_at|date('Y-m-d H:i') : 'N/A' }}
{% if show and show.tmdb_id %} {% endif %}
{% if show %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}