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