{% extends "base.html" %} {% block content %}
📡 Device Health
Load monitoring…
⚡ System & Power
⚙️ Firmware / OTA
Checking for updates…
💾 Config Backup
{% 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'); try { loadTelemetry(); } catch (e) {} try { checkUpdate(); } catch (e) {} } else { lock.classList.remove('hidden'); } })(); {% endblock %}