{% if eyebrow %}

{{ eyebrow }}

{% endif %} {% if heading %}

{{ heading }}

{% endif %} {% if systems %}
{% for s in systems %}
{% if s.label %}
{{ s.label }}
{% endif %}{% if s.detail %}
{{ s.detail }}
{% endif %}
{% if s.status == "alert" %}Alert{% elif s.status == "standby" %}Standby{% elif s.status == "offline" %}Offline{% else %}Online{% endif %}
{% endfor %}
{% endif %}