{% extends 'base.html' %} {% block head %} {{ super() }} {% endblock %} {% block body %} {% block filters %}
{% for arg_name, arg_value in extra_args.items() %} {% endfor %} {% if sort_column is not none %} {% endif %}
{% if active_filters %} Reset Filters {% endif %}
{% endblock %}
 
{% block uptime_info %}
Max uptime: {{ uptime['max'] }}
Average uptime: {{ uptime['average'] }}
Median uptime: {{ uptime['median'] }}
{% endblock %} {% block arch_distribution %}
{% endblock %}
 
{% block os_distribution %}

OS distribution (top 10)

{% for distro, kc_active_count, kc_silent_count, lc_active_count, lc_silent_count in os_distribution %} {% endfor %}
Distro name KCare active servers KCare silent servers LibCare active servers LibCare silent servers
{{ distro }} {{ kc_active_count }} {{ kc_silent_count }} {{ lc_active_count }} {{ lc_silent_count }}
{% endblock os_distribution %} {% block kernel_distribution %}

Kernel distribution (top 10)

{% for kernel, kc_active_count, kc_silent_count in kernel_distribution %} {% endfor %}
Kernel version KCare active servers KCare silent servers
{{ kernel }} {{ kc_active_count }} {{ kc_silent_count }}
{% endblock kernel_distribution %} {% endblock %} {% block tail %} {{ super() }}
{{ filter_groups|tojson|safe }}
{{ active_filters|tojson|safe }}
{{ uptime_distribution_data|tojson|safe }}
{{ arch_distribution_data|tojson|safe }}
{% endblock %}