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

Playlist Management

Playlists

Create New Playlist

Select the orientation that matches your display screens

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

Upload Media

Upload Media Files

Upload images, videos, and PDFs to your media library.
Assign them to playlists during or after upload.

Go to Upload Page

Media Library ({{ media_files|length }} files)

{% if media_files %} {% for media in media_files[:12] %}
{% if media.content_type == 'image' %} Image {% elif media.content_type == 'video' %} Video {% elif media.content_type == 'pdf' %} PDF {% else %} File {% endif %}
{{ media.filename[:20] }}...
{% endfor %} {% else %}

No media files yet. Upload your first file!

{% endif %}
{% if media_files|length > 12 %}

+ {{ media_files|length - 12 }} more files

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