{% extends "base.html" %} {% load scoped_tags %} {% block title %}Health{% endblock %} {% block page_title %}System Health{% endblock %} {% block page_subtitle %}Health checks and compliance reporting (Layer 0){% endblock %} {% block layer_indicator %}L0 Compliance{% endblock %} {% block content %} {# Overall Status #}
{{ pass_count }} passed, {{ fail_count }} failed of {{ checks|length }} check{{ checks|length|pluralize }}
| Check | Status | Message | Duration |
|---|---|---|---|
| {{ check.name }} | {% if check.status == "PASS" or check.status == "OK" or check.status == "HEALTHY" %} PASS {% elif check.status == "FAIL" or check.status == "ERROR" or check.status == "UNHEALTHY" %} FAIL {% else %} {{ check.status }} {% endif %} | {{ check.message|default:"--" }} | {% if check.duration_ms %}{{ check.duration_ms }}ms{% else %}--{% endif %} |
{{ compliance.total }}
Total Checks
{{ compliance.passed }}
Passed
{{ compliance.failed }}
Failed