mirror of https://github.com/Aidaho12/haproxy-wi
15 lines
569 B
HTML
15 lines
569 B
HTML
{% import 'languages/'+lang|default('en')+'.html' as lang %}
|
|
{% from 'include/input_macros.html' import input, checkbox %}
|
|
{% for s in smon %}
|
|
{% for s_service in smon_service %}
|
|
<tr class="newserver" id="smon-{{s.id}}">
|
|
{% if check_type == 'tcp' %}
|
|
{% include 'include/smon_tcp_server.html' %}
|
|
{% elif check_type == 'ping' %}
|
|
{% include 'include/smon_ping_server.html' %}
|
|
{% elif check_type == 'http' %}
|
|
{% include 'include/smon_http_server.html' %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|