{% extends "layouts/app.twig" %} {% block content %}
{% if movie.backdrop_url %}
{{ movie.title }} backdrop

{{ movie.title }}

{% if movie.tagline %}

{{ movie.tagline }}

{% endif %}
{% if movie.release_date %} {{ movie.release_date|date('Y') }} {% endif %} {% if movie.rating %} {{ movie.rating }}/10 {% endif %} {% if movie.runtime_minutes %} {{ (movie.runtime_minutes / 60)|round(1) }}h {{ movie.runtime_minutes % 60 }}m {% endif %}
{% if movie.watched %} Watched {% endif %} {% if movie.is_favorite %} Favorite {% endif %}
{% else %}

{{ movie.title }}

{% if movie.tagline %}

{{ movie.tagline }}

{% endif %}
{% endif %}
{% if movie.poster_url %} {{ movie.title }} {% else %}
{% endif %}

Quick Stats

{% if movie.vote_count %}
Votes {{ movie.vote_count|number_format }}
{% endif %} {% if movie.watch_count %}
Watch Count {{ movie.watch_count }}
{% endif %}
Source {{ movie.source_name }}
{% if movie.overview %}

Overview

{{ movie.overview }}

{% endif %}

Cast & Crew

{% if movie.director %}

Director

{{ movie.director }}

{% endif %} {% if movie.writer %}

Writer

{{ movie.writer }}

{% endif %}
{% if actors %}

Cast

{% endif %}
{% if movie.genre %}

Genres

{% for genre in movie.genre|split(',') %} {{ genre|trim }} {% endfor %}
{% endif %} {% if movie.production_companies or movie.production_countries %}

Production

{% if movie.production_companies %}

Companies

{{ movie.production_companies }}

{% endif %} {% if movie.production_countries %}

Countries

{{ movie.production_countries }}

{% endif %}
{% endif %} {% if movie.budget or movie.revenue or movie.original_language %}

Technical

{% if movie.budget %}

Budget

${{ movie.budget|number_format(0, '.', ',') }}

{% endif %} {% if movie.revenue %}

Revenue

${{ movie.revenue|number_format(0, '.', ',') }}

{% endif %} {% if movie.original_language %}

Language

{{ movie.original_language|upper }}

{% endif %}
{% endif %}
{% if movie.belongs_to_collection %}

Collection

{{ movie.belongs_to_collection }}

Part of a collection

{% endif %} {% if metadata %}

Technical Details & Metadata

{% if metadata.jellyfin_id %}

Jellyfin ID

{{ metadata.jellyfin_id }}
{% endif %} {% if metadata.genres %}

Genres

{% for genre in metadata.genres %} {{ genre }} {% endfor %}
{% endif %} {% if metadata.studios %}

Studios

{% for studio in metadata.studios %}

{{ studio.Name }}

{{ studio.Id }}

{% endfor %}
{% endif %} {% if metadata.poster_url or metadata.backdrop_url %}

Image URLs

{% if metadata.poster_url %}

Poster URL

{{ metadata.poster_url }}
{% endif %} {% if metadata.backdrop_url %}

Backdrop URL

{{ metadata.backdrop_url }}
{% endif %}
{% endif %}
Full Raw Metadata
{{ metadata|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% endif %}
{% endblock %}