{% load unfold %}

{{ title|default:"System Management" }}

System health checks and configuration overview

{% if data.health.status == 'healthy' %} check_circle Healthy {% else %} error Issues Detected {% endif %}
{% for check_name, check_status in data.health.checks.items %}

{{ check_name|title }}

{% if check_status %} Operational {% else %} Failed {% endif %}

{% if check_status %} check_circle {% else %} cancel {% endif %}
{% endfor %}

settings Configuration

{% for key, value in data.configuration.items %}
{{ key|title }} {{ value }}
{% endfor %}

cloud Services

{% if data.services %}
{% for service_name, service_status in data.services.items %}
{{ service_name }}
{% if service_status %}Active{% else %}Inactive{% endif %}
{% endfor %}
{% else %}

No external services configured

{% endif %}