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

Endpoints

Add New Endpoint
{% if endpoints %}
{% for endpoint in endpoints %} {% endfor %}
Mnemonic Hostname Status Health Check TLS Check DNS Check DNS Resolver List Actions
{{ endpoint.mnemonic }} {{ endpoint.hostname }} {% 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 %} {% if endpoint.dns_resolver_list %} {{ endpoint.dns_resolver_list.name }} {{ endpoint.dns_resolver_list.resolvers.count }} resolver(s) {% else %} None {% endif %}
{% else %}
No endpoints found. Create one using the button above.
{% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}