{% extends "base.html" %} {% load i18n %} {% block content %}
{% for shard in shard_list|dictsortreversed:"service_set.count" %}
{% if shard.service_set.count %} {% for service in shard.service_set.all %} {% endfor %}
{{ shard.service_set.count }} Service
{% if service.check_notifiers == False %} {% endif %} {{ service.name }}
{% endif %} {% if shard.prometheus_set.count %} {% for prometheus in shard.prometheus_set.all %} {% endfor %}
{{ shard.prometheus_set.count }} Servers
{{ prometheus.host }}:{{ prometheus.port }}
{% endif %}
{% endfor %} {% endblock %}