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

{{ title }}

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

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