{% extends "base.html" %} {% block content %}

Dashboard

Playlists

{% for p in playlists %} {% else %} {% endfor %}
Name Items Actions
{{ p.name }} {# Indicators: schedule + priority #} {% set has_schedule = (p.schedule_start is not none) or (p.schedule_end is not none) %} {% if has_schedule %} {% set is_active = (not p.schedule_start or p.schedule_start <= now_utc) and (not p.schedule_end or now_utc <= p.schedule_end) %} 📅 {% endif %} {% if p.is_priority %} {% endif %} {{ p.items|length }}
No playlists yet.

Displays

{% for d in displays %}
{% else %}
No displays. Ask admin to add displays.
{% endfor %}
{# Embed playlists list as JSON to avoid templating inside JS (keeps JS linters happy). #} {% endblock %} {% block page_scripts %} {% endblock %}