{% extends 'base.html' %} {% block title %}Passive Checks{% endblock %} {% block headerjs %} {% endblock %} {% block content %}

Passive Checks

View of all the current passive checks defined in your ncpa configuration files.

{% if checks|length > 1 %} {% for check in checks %}
{{ check[0] }} = {{ check[1] }}
{% endfor %} {% else %}

There are no passive checks defined right now.

{% endif %}
{% endblock %}