Tip: drag items to reorder. Changes save automatically.
{% for i in playlist.items %}
≡
#{{ i.position }}{{ i.item_type }}
{% if i.title %}
{{ i.title }}
{% else %}
.
{% endif %}
{% if i.item_type == 'image' and i.file_path %}
{% elif i.item_type == 'video' and i.file_path %}
{% elif i.item_type == 'webpage' and i.url %}
{% elif i.item_type == 'youtube' and i.url %}
{% else %}
No preview
{% endif %}
{# Intentionally do NOT show file names or URLs for privacy/clean UI #}
{% if i.item_type != 'video' %}
{% endif %}
{% else %}
No items.
{% endfor %}
{# Add Item Modal (multi-step) #}
Add item
{# Load Cropper.js BEFORE our inline script so window.Cropper is available #}
{# Bootstrap JS required for modal (already included via base.html CSS only) #}