{% extends "base.html" %} {% block title %}Manage {{ playlist.name }} - DigiServer v2{% endblock %} {% block content %}

🎬 {{ playlist.name }}

{% if playlist.description %}

{{ playlist.description }}

{% endif %}
Content Items {{ playlist_content|length }}
Total Duration {{ playlist.total_duration }}s
Version {{ playlist.version }}
Players Assigned {{ playlist.player_count }}
← Back to Playlists

📋 Playlist Content (Drag to Reorder)

{% if playlist_content %} {% for content in playlist_content %} {% endfor %}
# Filename Type Duration Audio Edit Actions
⋮⋮ {{ loop.index }} {{ content.filename }} {% if content.content_type == 'image' %}📷 Image {% elif content.content_type == 'video' %}🎥 Video {% elif content.content_type == 'pdf' %}📄 PDF {% else %}📁 Other{% endif %} {{ content._playlist_duration or content.duration }}s {% if content.content_type == 'video' %} {% else %} {% endif %} {% if content.content_type in ['image', 'pdf'] %} {% else %} {% endif %}
{% else %}
📭

No content in playlist yet. Add content from the right panel.

{% endif %}

➕ Add Content

{% if available_content %}
{% for content in available_content %}
{% if content.content_type == 'image' %}📷 {% elif content.content_type == 'video' %}🎥 {% elif content.content_type == 'pdf' %}📄 {% else %}📁{% endif %} {{ content.filename }}
{{ content.file_size_mb }} MB
{% endfor %}
{% else %}

All available content has been added to this playlist!

{% endif %}
{% endblock %}