{% extends "base.html" %} {% block content %}
| 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. | ||