{% extends "base.html" %} {% load i18n %} {% block content %} {% if service_list %}
Services
{% for service in service_list %} {% endfor %}
Name Projects Rules
{{ service.name }}
{% endif %} {% if project_list %}
Projects
{% for project in project_list %} {% include 'promgen/project_row.html' %} {% endfor %}
Project Exporters Notifiers Actions
{% endif %} {% if farm_list %}
Farms
{% for farm in farm_list %} {% endfor %}
Name Projects Hosts
{{ farm.name }}
{% endif %} {% if host_list %}
Hosts
{% for host in host_list %} {% endfor %}
{{ host.name }} {% trans "Silence" %}
{% endif %} {% if rule_list %}
Rules
{% include "promgen/rule_header.html" %} {% include "promgen/rule_block.html" %}
{% endif %} {% endblock %}