{% extends "base_status.html" %} {% load url from future %} {% load i18n %} {% block title %}Business Process{% endblock %} {% block smallheader %}edit{% endblock %} {% block largeheader %}Business Process{% endblock %} {% block nav1 %}{{ block.super }}{% endblock %} {% block nav2 %}{% trans "Business Process" %}{% endblock %} {% load adagiostags %} {% block content %}
{% if form %}
{% csrf_token %} {% include "bootstrap_fields.html" with fields=form %}
{% else %} {% blocktrans %}Could not find Business process. {{ process_name }}{% endblocktrans %} {% endif %}
{% for i in bp.get_processes %} {% endfor %}
{% trans "Name" %} {% trans "Alias" %} {% trans "Status Method" %} {% trans "Sub Processes" %} {% trans "Tags" %}
{{ i.process_type }}: {{ i.name }}
{{ i.display_name }} {{ i.status_method }} {{ i.processes|length }} {{ i.tags }} {% csrf_token %}
{% for i in bp.rules %} {% endfor %}
{% trans "Trigger" %} {% trans "Action" %}
{% trans "When a sub process with tag" %} {% trans "has at least" %} {% trans "problems" %} {% trans "Mark this business group as" %}
{% if bp.graphs %} {% for i in bp.graphs %} {% endfor %}
{% trans "Host" %} {% trans "Service" %} {% trans "Metric Name" %} {% trans "Notes" %}
{{ i.host_name }} {{ i.service_description }} {{ i.metric_name }} {{ i.notes }}
{% else %} {% trans "No graphs have been added to this business process" %} {% endif %}
{% endblock %} {% block view_buttons %} {% endblock %} {% block action_buttons %}
{% trans "Add sub item" %} {% trans "Public view for this process" %} {% trans "Add graphs" %}
{% endblock %} {% block toolbar %}{{ block.super }}{% endblock %} {% block footer %} {{ block.super }} {% endblock %}