{% extends '_base.html' %} {% block styles %} {% endblock %} {% block content %}

Hosts

{% for h in hosts %}

Status: {{ h.status }}
CPU: {{ h.cpu }}
Memory: {{ h.memory }}GB
VMs: {{ h.vm_count }}
Containers: {{ h.lxc_count }}
Monitoring: {% if h.check_mk.get('extensions') and h.check_mk.get('extensions').is_offline %}OFFLINE{% else %}ONLINE{% endif %}
{% endfor %}
{% endblock %}