{% extends "tv/base.html" %} {% block title %}{{ movie.title or movie.folder_name }} - VideoKonverter TV{% endblock %} {% block content %}
{% if movie.poster_url %} {% endif %}

{{ movie.title or movie.folder_name }}

{% if movie.year %}

{{ movie.year }}

{% endif %} {% if movie.genres %}

{{ movie.genres }}

{% endif %} {% if movie.overview %}

{{ movie.overview }}

{% endif %}
{{ t('rating.your_rating') }}:
{% for i in range(1, 6) %} {% endfor %} {% if user_rating > 0 %} {% endif %}
{% if avg_rating.count > 0 %}
{% for i in range(1, 6) %} {% endfor %} {{ avg_rating.avg }} ({{ avg_rating.count }})
{% endif %} {% if tvdb_score %}
TVDB {{ "%.0f"|format(tvdb_score) }}%
{% endif %}
{% if videos %} ▶ {{ t('player.play') }} {% endif %}
{% if videos|length > 1 %}

{{ t('movies.versions') }}

{% for v in videos %}
{% if v.duration_sec %}{{ (v.duration_sec / 60)|round|int }} Min{% endif %}
{{ v.file_name }}
{% if v.width %}{{ v.width }}x{{ v.height }}{% endif %} · {{ v.container|upper }} {% if v.video_codec %} · {{ v.video_codec }}{% endif %}
{% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}