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

Live E-Paper Screen Mirror

Refreshed just now
Current Screen Output
Rendering: Weather Dashboard
800×480 px

Playlists & Rotation Schedules

Main Rotation

Widgets in this playlist rotate sequentially based on duration intervals.

Target Interval: 45 mins Auto-rotates

Playlist Widgets (2 widgets configured)

Configure parameters, durations, and layout options for each widget in the active rotation

{% endblock %} {% block init %} (async () => { if (typeof checkAuthStatus !== 'function') { document.getElementById('auth-lock')?.classList.remove('hidden'); return; } await checkAuthStatus(); const lock = document.getElementById('auth-lock'); if (isAuthenticated) { lock.classList.add('hidden'); await loadStatus(); try { renderPlaylistTabs(); renderPlaylist(); } catch (e) {} } else { lock.classList.remove('hidden'); } })(); {% endblock %}