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

🎬 {{ player.name }}

📍 {{ player.location or 'No location' }}

🖥️ Hostname: {{ player.hostname }}

📊 Status: {{ '🟢 Online' if player.is_online else '🔴 Offline' }}

Playlist Items
{{ playlist_content|length }}
Playlist Version
{{ player.playlist_version }}
Total Duration
{{ playlist_content|sum(attribute='duration') }}s
← Back to Player ➕ Upload New Content {% if playlist_content %}
{% endif %}

📋 Current Playlist

Drag and drop to reorder
{% if playlist_content %} {% for content in playlist_content %} {% endfor %}
# Filename Type Duration (s) Size Actions
⋮⋮ {{ loop.index }} {{ content.filename }} {% if content.content_type == 'image' %} 📷 Image {% elif content.content_type == 'video' %} 🎥 Video {% elif content.content_type == 'pdf' %} 📄 PDF {% else %} 📁 {{ content.content_type }} {% endif %}
{{ "%.2f"|format(content.file_size_mb) }} MB
{% else %}
📭

No content in playlist

Upload content or add existing files to get started

{% endif %}
{% if available_content %}

➕ Add Existing Content

{% endif %}
{% endblock %}