{% extends "layouts/app.twig" %} {% block content %}
Back to Adult Videos
{% 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.file_size %} {{ movie.file_size|filesizeformat }} {% 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.collection %} {{ movie.collection }} {% endif %}
{% if movie.overview %}

Overview

{{ movie.overview }}

{% endif %}

Cast & Crew

{% if movie.director %}
Director {{ movie.director }}
{% endif %} {% if movie.cast %}
Cast
{% for actor in movie.cast|split(',') %} {{ actor|trim }} {% endfor %}
{% endif %}
{% if movie.actors %}

Performers

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

Categories

{% if movie.genre %} {% for genre in movie.genre|split(',') %} {{ genre|trim }} {% endfor %} {% endif %} {% if movie.categories %} {% for category in movie.categories|split(',') %} {{ category|trim }} {% endfor %} {% endif %}
{% endif %} {% if movie.video_codec or movie.audio_codec or movie.resolution or movie.bitrate %}

Technical Details

{% if movie.video_codec %}
Video Codec {{ movie.video_codec }}
{% endif %} {% if movie.audio_codec %}
Audio Codec {{ movie.audio_codec }}
{% endif %} {% if movie.resolution %}
Resolution {{ movie.resolution }}
{% endif %} {% if movie.bitrate %}
Bitrate {{ movie.bitrate }} kbps
{% endif %} {% if movie.frame_rate %}
Frame Rate {{ movie.frame_rate }} fps
{% endif %} {% if movie.aspect_ratio %}
Aspect Ratio {{ movie.aspect_ratio }}
{% endif %}
{% endif %}
{% if movie.studio or movie.production_companies %}

Production

{% if movie.studio %}
Studio {{ movie.studio }}
{% endif %} {% if movie.production_companies %}
Production Company {{ movie.production_companies }}
{% endif %}
{% endif %} {% if movie.file_path or movie.duration or movie.created_at %}

File Information

{% if movie.file_path %}
File Path {{ movie.file_path }}
{% endif %} {% if movie.duration %}
Duration {{ movie.duration }}
{% endif %} {% if movie.created_at %}
Added {{ movie.created_at|date('M j, Y') }}
{% endif %}
{% endif %} {% if movie.streaming_providers or movie.availability %}

Availability

{% if movie.streaming_providers %}
Streaming Platforms
{% for provider in movie.streaming_providers %} {{ provider }} {% endfor %}
{% endif %} {% if movie.availability %}
Availability Status {{ movie.availability }}
{% endif %}
{% endif %} {% if metadata %}
Technical Details & Metadata
{{ metadata|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% endif %}
{% endblock %}