{% extends "base_status.html" %} {% load url from future %} {% load i18n %} {% block title %}{% trans "Hostgroup" %} {{ hostgroup_name }}{% endblock %} {% block nav2 %}{% trans "Hostgroups" %} / {{ hostgroup_name }}{% endblock %} {% block smallheader %}{% trans "hostgroup" %}{% endblock %} {% block largeheader %}{{ hostgroup_name }}{% endblock %} {% block content %}
{% if my_hostgroup %}
{% trans "Hostgroup Name" %} {{ my_hostgroup.name }}
{% trans "Alias" %} {{ my_hostgroup.alias }}
{% trans "External links" %} {% if my_hostgroup.action_url %} action url {% endif %} {% if my_hostgroup.notes_url %} notes_url {% endif %}
{% trans "Parent Hostgroups" %} {% for i in my_hostgroup.parent_hostgroups %} {{ i }}, {% endfor %}
{% trans "Host Status" %}
{% trans "Hosts up:" %}
{{ my_hostgroup.num_hosts_up }}
{% trans "Hosts down:" %}
{{ my_hostgroup.num_hosts_down }}
{% trans "Hosts unreachable:" %}
{{ my_hostgroup.num_hosts_unreach }}
...
{% trans "Total:" %} {{ my_hostgroup.num_hosts }}
{% trans "Service Status" %}
OK:
{{ my_hostgroup.num_services_ok }}
Warning:
{{ my_hostgroup.num_services_warn }}
Critical:
{{ my_hostgroup.num_services_crit }}
Unknown:
{{ my_hostgroup.num_services_unknown }}
{% trans "Total:" %} {{ my_hostgroup.num_services }}
{% else %} {% blocktrans %}No Information found for hostgroup {{ hostgroup_name }}. Are you sure it exists ?{% endblocktrans %} {% endif %}
{% blocktrans %}hostgroups that belong to {{ hostgroup_name }}{% endblocktrans %} {% include "snippets/status_hostgrouplist_snippet.html" %}
{% blocktrans %}Hosts that belong to {{ hostgroup_name }}{% endblocktrans %}
{% trans "This dialog should start loading when you click the hosts tab" %}
{% blocktrans %}Services that belong to {{ hostgroup_name }}{% endblocktrans %}
{% trans "This dialog should start loading when you click the services tab" %}
{% trans "This dialog should reload when the history tab is clicked." %}

Information available via livestatus:

{% for k,v in my_hostgroup.items %} {% endfor %}
{{ k }} {{ v }}
{% endblock %} {% block footer %} {{ block.super }} {% endblock %}