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

Playlist Management

Create New Playlist

Select the orientation that matches your display screens

Media Library

Upload New Media

📚 Last 3 Added Media Total: {{ total_media_count }}

{% if media_files %} {% for media in media_files %}
{% if media.content_type == 'image' %}
{{ media.filename }}
{% elif media.content_type == 'video' %}
🎥
{% elif media.content_type == 'pdf' %}
📄
{% else %}
📁
{% endif %}
{{ media.filename[:25] }}{% if media.filename|length > 25 %}...{% endif %}
{{ "%.1f"|format(media.file_size_mb) }} MB
{% endfor %} {% else %}
📭

No media files yet. Upload your first file!

{% endif %}
{% if total_media_count > 3 %}
📚 View All Media ({{ total_media_count }} files)
{% endif %}

Existing Playlists

{% if playlists %} {% for playlist in playlists %}

{{ playlist.name }}

📊 {{ playlist.content_count }} items | 👥 {{ playlist.player_count }} players | 🔄 v{{ playlist.version }}
{% endfor %} {% else %}

No playlists yet. Create your first playlist above!

{% endif %}

Player Assignments

{% for player in players %} {% endfor %}
Player Name Hostname Location Assigned Playlist Status Actions
{{ player.name }} {{ player.hostname }} {{ player.location or '-' }}
{% if player.is_online %} 🟢 Online {% else %} ⚫ Offline {% endif %}
⚙️ Manage {% if player.playlist_id %} 🖥️ Live {% endif %}
{% endblock %}