{% extends "base.html" %} {% block title_header %} Clients {% endblock %} {% block content%}
| Client | Status | Last Heartbeat |
|---|---|---|
| {{ client["client_name"] }} |
{% if client["is_silenced"] %}
🔕
{% endif %}
{% if client["status"] == "up" %}
✅ Up
{% elif client["status"] == "down" %}
❌ Down
{% else %}
❔ Unknown
{% endif %}
{% if client["is_silenced"] %}
Silencing stops {{ client["remaining_silence"] }} {% endif %} |
{{ client["alert_time"] }} |