{% extends 'generic/object.html' %} {% load i18n %} {% load plugins %} {% load humanize %} {% load helpers %} {% block content %}
{% trans "Listeners" %}
{% if object.description %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Service" %} {{ object.service|linkify|placeholder }}
{% trans "Port" %} {{ object.port }}
{% trans "Protocol" %} {% badge object.get_protocol_display bg_color=object.get_protocol_color %}
{% trans "Source NAT" %} {% checkmark object.source_nat %}
{% trans "Use Proxy Port" %} {% checkmark object.use_proxy_port %}
{% trans "MAX Clients" %} {{ object.max_clients }}
{% trans "MAX Requests" %} {{ object.max_requests }}
{% trans "Client Timeout" %} {{ object.client_timeout }}
{% trans "Server Timeout" %} {{ object.server_timeout }}
{% trans "Client Keepalive" %} {% checkmark object.client_keepalive %}
{% trans "Surge Protection" %} {% checkmark object.surge_protection %}
{% trans "TCP Buffering" %} {% checkmark object.tcp_buffering %}
{% trans "Compression" %} {% checkmark object.compression %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}