{% 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 %}
{% endblock %}