{% extends "base.html" %} {% block title %}Media Gallery{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Media Gallery

{% for item in media_items %}
{% if item.thumbnail %} Thumbnail {% endif %}
{{ item.title or item.name }}

Type: {{ item.media_type }}, Size: {{ item.file_size }} bytes
{% if item.duration %}Duration: {{ "%.2f"|format(item.duration) }}s
{% endif %} {% if item.artist %}Artist: {{ item.artist }}
{% endif %} {% if item.album %}Album: {{ item.album }}
{% endif %}

{% endfor %}
{% endblock %}