{% extends "base.html" %} {% block title %} System {% endblock %} {% block breadcrumb %} {% endblock %} {% block header %} {% endblock %} {% block content %}
{% if 'memory' in active_checks %}

Memory

{% if checks.memory.clone().count() > 0 %}
{% else %}
No data
{% endif %}{# count #} {% endif %}{# memory in active_checks #} {% if 'loadavg' in active_checks %}

Loadavg

{% if checks.loadavg.clone().count() > 0 %}
{% else %}
No data
{% endif %}{# count #} {% endif %}{# loadavg in active_checks #} {% if 'cpu' in active_checks %}

CPU

{% if checks.cpu.clone().count() > 0 %}
{% else %}
No data
{% endif %}{# count #} {% endif %}{# cpu in active_checks #} {% if 'network' in active_checks %} {% if network_interfaces %}

Network

{% for interface in network_interfaces %} {% if interface != 'lo' %}

{{ interface }}

{% endif %} {% endfor %} {% endif %} {% endif %} {% if 'disk' in active_checks %}

Disk

{% for volume in volumes %}

{{ volume }}

{% endfor %} {% endif %} {% endblock %} {% block js %} {% endblock %}