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