{% extends "base_status.html" %} {% block title %}Business Process{% endblock %} {% block smallheader %}view{% endblock %} {% block largeheader %}Business Process{% endblock %} {% block nav1 %}{{ block.super }}{% endblock %} {% block nav2 %}Business Process{% endblock %} {% load adagiostags %} {% block content %}

{{ bp.display_name }} Status

{% if bp.css_hint == 'success' %} All Systems are operational {% endif %} {% if bp.css_hint == 'warning' %} There are some minor problems {% endif %} {% if bp.css_hint == 'danger' %} We are currently dealing with problems {% endif %} {% if bp.css_hint == 'unknown' %} Some probes are returning status "unknown" {% endif %}

More information

{% if bp.notes %}

{{ bp.notes }}

{% endif %} {% if bp.get_processes %}
{% for i in bp.get_processes %}
{{ i }} {{ i.get_human_friendly_status }}
{% endfor %}
{% else %} No subgroups in {{ bp.display_name }}f {% endif %}

Graphs

{% endblock %} {% block view_buttons %}{% endblock %} {% block action_buttons %}{% endblock %} {% block toolbar %}{% endblock %} {% block footer %} {{ block.super }} {% endblock %}