{% extends 'admin/master.html' %} {% import 'admin/lib.html' as lib with context %} {% import 'admin/model/layout.html' as model_layout with context %} {% block head %} {{ super() }} {{ lib.form_css() }} {% endblock %} {% block body %} {% block filters %} {{ model_layout.filter_form() }} {% endblock %}
 
{% block uptime_info %}
{{ _gettext('Max uptime' + ':') }} {{ uptime['max'] }}
{{ _gettext('Average uptime') + ':' }} {{ uptime['average'] }}
{{ _gettext('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 }}
{{ lib.form_js() }} {% endblock %}