{% extends "base.html" %} {% block title %}Status — TechHand Remote Support{% endblock %} {% block content %}

Sync status

Dashboard
Connection

{% if state.connected %}Connected{% else %}Disconnected{% endif %}

{{ config.server_url }}

Organization: {{ config.organization_name or (('#' ~ config.organization_id) if config.organization_id else 'not bound') }}

Sync statistics
Scans uploaded{{ stats.scans_uploaded if stats else 0 }}
Devices synced{{ stats.devices_synced if stats else 0 }}
Failed uploads{{ stats.failed_uploads if stats else 0 }}
Queue size{{ stats.queue_size if stats else 0 }}
Last activity
Last sync{{ stats.last_sync if stats and stats.last_sync else 'Never' }}
Last heartbeat{{ stats.last_heartbeat if stats and stats.last_heartbeat else 'Never' }}
Last scan{{ state.last_scan if state and state.last_scan else 'Never' }}
Sync manager

{% if stats and stats.is_running %}Running{% elif not state.connected %}Not started (server offline){% else %}Stopped{% endif %}

Background synchronization service.

{% endblock %}