{% extends "base.html" %} {% block content %} {# Cropper.js (used for image cropping) #}

Playlist: {{ playlist.name }}

Back

Add item

{# Image section #}
Drag & drop an image here
or click to select a file
Crop to 16:9 (recommended for display screens).
Crop
{# Webpage section #}
Preview might not work for all sites (some block embedding).
Preview
Open
{# Video section #}
In production: video support is currently being worked on.

Items

Tip: drag items to reorder. Changes save automatically.
{% for i in playlist.items %}
#{{ i.position }} {{ i.item_type }} {{ i.title or '' }}
{% if i.item_type in ['image','video'] %} File: {{ i.file_path }} {% else %} URL: {{ i.url }} {% endif %} · Duration: {{ i.duration_seconds }}s
{% if i.item_type == 'image' and i.file_path %} {{ i.title or 'image' }} {% elif i.item_type == 'video' and i.file_path %} {% elif i.item_type == 'webpage' and i.url %}
Open URL (opens in new tab)
{% else %}
No preview available.
{% endif %}
{% else %}
No items.
{% endfor %}
{# Load Cropper.js BEFORE our inline script so window.Cropper is available #}
{% endblock %}