{% 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 {% if not can_edit %} 👁 View-only — you don't have edit permission for this playlist {% endif %}

📋 Playlist Content{% if can_edit %} (Drag to Reorder){% endif %}

{% if can_edit %} {% endif %}
{% if playlist_content %} {% for content in playlist_content %} {% endfor %}
# Filename Type Duration Audio Edit Actions
{% if can_edit %}{% endif %} {% if can_edit %}⋮⋮{% endif %} {{ loop.index }} {% if content.content_type == 'weblink' %} {{ content.url }} {% else %} {{ content.filename }} {% endif %} {% if content.content_type == 'image' %}📷 Image {% elif content.content_type == 'video' %}🎥 Video {% elif content.content_type == 'pdf' %}📄 PDF {% elif content.content_type == 'weblink' %}🔗 Web Link {% 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 %} {% if can_edit %}
{% else %} {% endif %}
{% else %}
📭

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

{% endif %}
{% if can_edit %}

➕ Add Content

🔗 Add Web Link

{% 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 %} {% else %} {# Viewer without edit permission on this playlist #}
🔒

You have view-only access to this playlist.

Contact an administrator to request edit access.

{% endif %}
{% endblock %}