haproxy-wi/app/templates/ajax/overviewServers.html

36 lines
958 B
HTML
Raw Normal View History

2018-08-01 08:06:09 +00:00
{% for service in service_status %}
<tr>
<td class="overviewTr first-collumn">
<a name="{{ service.0 }}"></a>
2018-09-23 09:16:16 +00:00
{% if service.5 != "None" %}
<h4 title="IP {{ service.1 }} {{ service.5 }}"> {{ service.0 }} :</h4>
2018-09-23 09:16:16 +00:00
{% else %}
<h4 title="IP {{ service.1 }}"> {{ service.0 }} :</h4>
2018-09-23 09:16:16 +00:00
{% endif %}
2018-08-01 08:06:09 +00:00
</td>
<td class="overviewTd" style="padding-top: 10px;">
<pre style="font-size: 12px;">
{{ service.2 }}
</pre>
</td>
2018-08-08 12:06:23 +00:00
<td>
2018-08-15 08:17:57 +00:00
<pre style="font-size: 12px; padding-left: 0px;">
2018-08-01 08:06:09 +00:00
{{ service.3 }}
</pre>
</td>
2018-08-08 12:06:23 +00:00
<td style="padding: 10px; padding-bottom: 0;font-size: 12px;">
<span style="padding-left: 0px; margin: 0;">
2019-08-15 09:12:20 +00:00
{% if 'Unknown command' in service.4 %}
2019-09-06 07:25:53 +00:00
Too old version HAProxy
2019-08-15 09:12:20 +00:00
{% else %}
{% for s in service.4 %}
<a href="/app/sections.py?serv={{service.1}}&section={{ s }}" title="Edit {{s}} section" target="_blanck">
{{s}}
</a><br />
{% endfor %}
2019-08-15 09:12:20 +00:00
{% endif %}
</span>
2018-08-01 08:06:09 +00:00
</td>
<td></td>
</tr>
{% endfor %}