{% extends 'admin/base.html' %} {% block content %}
Connected Displays live
{% for d in displays %} {% endfor %}
ID Name Public URL Status Last seen Latency Offset
{{ d.id }} {{ d.name }} /display/{{ d.public_id }} {{ 'online' if d.is_online else 'offline' }} {{ d.last_seen or '' }}
Active Event
{% if active %}
{{ active.name }} (#{{ active.event_id }})
Start: {{ active.start_time_ms }}
{% else %}
No active event
{% endif %}
Manual Trigger
{% for e in events %}
{{ e.name }} (#{{ e.id }})
{% endfor %}
{% endblock %}