{% extends "base.html" %} {% block title %}Playlist Permissions โ€” {{ target_user.username }}{% endblock %} {% block content %}
โ† Back to Users

๐ŸŽฌ Playlist Edit Permissions

User: {{ target_user.username }} {{ target_user.role }}

{% if target_user.role in ('admin', 'editor') %}
โ„น๏ธ This user already has {{ target_user.role }} access โ€” they can edit all playlists automatically. Playlist-level permissions are only relevant for viewer role users.
{% else %}

Select which playlists this viewer may add, remove and reorder content in. They will still be able to view all playlists regardless of this setting.

{% if playlists %} {% for playlist in playlists %} {% endfor %}
Playlist Description Can Edit?
{{ playlist.name }}
{{ playlist.content_count }} items ยท {{ playlist.player_count }} player(s)
{{ playlist.description or 'โ€”' }}
Cancel
{% else %}

No playlists created yet.

{% endif %}
{% endif %}
{% endblock %}