{% if systems %}

{{ healthy_systems }}

Healthy Systems

{{ unhealthy_systems }}

Unhealthy Systems

{{ unknown_systems }}

Unknown Status
{% if unhealthy_systems > 0 %} {% endif %}
System Details
{% for system in systems|slice:":6" %}
{{ system.name }}
{{ system.get_system_type_display }}
{% if system.health_status == 'HEALTHY' %} Healthy {% elif system.health_status == 'UNHEALTHY' %} Unhealthy {% else %} Unknown {% endif %} {% if system.last_health_check %}
{{ system.last_health_check|timesince }} ago
{% endif %}
{% endfor %}
{% if systems|length > 6 %}
View All {{ systems|length }} Systems
{% endif %}
{% else %}
No External Systems

External systems will appear here once configured

Add First System
{% endif %}