{% extends 'endpoints/base.html' %} {% block title %}Endpoints{% endblock %} {% block content %}

Endpoints

Add New Endpoint
{% if endpoints %}
{% for endpoint in endpoints %} {% endfor %}
Mnemonic Hostname DNS Resolver List Status Health Check TLS Check DNS Check Actions
{{ endpoint.mnemonic }} {{ endpoint.hostname }} {% if endpoint.dns_resolver_list %} {{ endpoint.dns_resolver_list.name }} {{ endpoint.dns_resolver_list.resolvers.count }} resolver(s) {% else %} None {% endif %} {% if endpoint.ignore %} Ignored {% else %} Active {% endif %} {% if endpoint.health_check %} Enabled {% else %} Disabled {% endif %} {% if endpoint.tls_check %} Enabled {% else %} Disabled {% endif %} {% if endpoint.dns_check %} Enabled {% else %} Disabled {% endif %}
{% else %}
No endpoints found. Create one using the button above.
{% endif %} {% endblock %}