2023-02-13 14:45:45 +00:00
|
|
|
{% import 'languages/'+lang|default('en')+'.html' as lang %}
|
2020-07-16 07:05:16 +00:00
|
|
|
{% from 'include/input_macros.html' import input, checkbox %}
|
|
|
|
{% for s in smon %}
|
2023-06-03 15:04:22 +00:00
|
|
|
{% 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 %}
|
2023-02-13 14:45:45 +00:00
|
|
|
{% endfor %}
|