{% if client_data.connected %}
Connected
{% else %}
{{ client_data.connection_status|default:"Offline" }}
{% endif %}
{% if client_data.overall_health is not None %}
Health Score:
{% if client_data.overall_health >= 8 %}
{{ client_data.overall_health }}/10
Good - Operating normally
{% elif client_data.overall_health >= 5 %}
{{ client_data.overall_health }}/10
Fair - Some issues detected
{% elif client_data.overall_health >= 1 %}
{{ client_data.overall_health }}/10
Poor - Connectivity issues
{% else %}
{{ client_data.overall_health }}/10
No health data - Client offline or no recent activity
{% endif %}
{% endif %}
{% if client_data.device_type %}
{{ client_data.device_type }}
{% endif %}