{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% load humanize %} {% load helpers %} {% block content %}
{% trans "Health Monitors" %}
{% if object.description %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Type" %} {% badge object.get_type_display bg_color=object.get_type_color %}
{% trans "HTTP Version" %} {% badge object.get_http_version_display bg_color=object.get_http_version_color %}
{% trans "Monitor URL" %} {{ object.monitor_url }}
{% trans "HTTP Response" %} {{ object.http_response }}
{% trans "Monitor Host" %} {{ object.monitor_host }}
{% trans "Monitor Port" %} {{ object.monitor_port }}
{% trans "HTTP Secure" %} {% checkmark object.http_secure %}
{% trans "HTTP Response Codes" %} {{ object.http_response_codes }}
{% trans "Probe Interval" %} {{ object.probe_interval }}
{% trans "Response Timeout" %} {{ object.response_timeout }}
{% trans "Disabled" %} {% checkmark object.disabled %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}