{% extends "base.html" %} {% block title %}{{ item.title }}{% endblock %} {% block body_class %}item-detail-page{% endblock %} {% block content %}
← Back
{% if item.cover_art_path %} {{ item.title }} {% elif item.thumbnail_url %} {{ item.title }} {% else %}
{{ item.title[:1] }}
{% endif %}
{% if user.rank >= 3 %} {% endif %}

{{ item.title }}

{% if item.duration_sec %} {{ (item.duration_sec // 60) }}m {% endif %}
{% if item.description %}

{{ item.description }}

{% else %}

No description available.

{% endif %} {% if categories %}
Category
{% for cat in categories %} {{ cat.name }} {% endfor %}
{% endif %} {% if tags %}
Tags
{% for tag in tags %} {{ tag }} {% endfor %}
{% endif %} {% if people.director %}
Director
{% for name in people.director %} {{ name }} {% endfor %}
{% endif %} {% if people.cast %}
Cast
{% for name in people.cast %} {{ name }} {% endfor %}
{% endif %} {% if people.producer %}
Producers
{% for name in people.producer %} {{ name }} {% endfor %}
{% endif %} {% if people.writer %}
Writer
{% for name in people.writer %} {{ name }} {% endfor %}
{% endif %} {% if studios %}
Studio
{% for name in studios %} {{ name }} {% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}