{% extends "base.html" %} {% block title %}Hosts — FabledNetMon{% endblock %} {% block content %}

Hosts

Add Host
{% if hosts %}
{% for host in hosts %} {% endfor %}
Name Address Probe Monitors
{{ host.name }} {{ host.address }} {{ host.probe_type.value | upper }}:{{ host.probe_port }} {% if host.ping_enabled %}ping{% endif %} {% if host.dns_enabled %}dns{% endif %} Edit
{% else %}

No hosts configured yet. Add one.

{% endif %} {% endblock %}