{% extends "layouts/app.twig" %} {% block content %}
Back to Movies
{% if movie.poster_url %} {{ movie.title }} {% else %}
{% endif %}

{{ 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.vote_count %} {{ movie.vote_count }} votes {% endif %} {{ movie.source_name }}
{% if movie.watched %} Watched {% endif %} {% if movie.watch_count > 0 %} {{ movie.watch_count }} watch{{ movie.watch_count > 1 ? 'es' : '' }} {% endif %} {% if movie.is_favorite %} Favorite {% endif %} {% if movie.status %} {{ movie.status|title }} {% endif %}
{% 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
{% for actor in actors %} {{ actor.name }} {% endfor %}
{% 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 }}
{% endif %} {% if movie.streaming_providers or movie.availability %}

Where to Watch

{% if movie.streaming_providers %}
Streaming
{% for provider in movie.streaming_providers %} {{ provider }} {% endfor %}
{% endif %} {% if movie.availability %}
Availability {{ movie.availability }}
{% endif %}
{% endif %} {% if movie.user_reviews or movie.critic_reviews %}

Reviews & Ratings

{% if movie.user_reviews %}

User Reviews

{% for review in movie.user_reviews[:3] %}
{% for i in 1..5 %} {% endfor %}
{{ review.author }}

{{ review.content|slice(0, 150) }}{% if review.content|length > 150 %}...{% endif %}

{% endfor %}
{% endif %} {% if movie.critic_reviews %}

Critic Reviews

{% for review in movie.critic_reviews[:3] %}
{{ review.publication }} {{ review.rating }}/100

{{ review.excerpt|slice(0, 150) }}{% if review.excerpt|length > 150 %}...{% endif %}

{% endfor %}
{% endif %}
{% endif %} {% if metadata %}
Technical Details & Metadata
{{ metadata|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% endif %}
{% endblock %}