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

24 lines
575 B
HTML

{% for service in service_status %}
<tr>
<td class="overviewTr first-collumn">
<a name="{{ service.0 }}"></a>
<h3 title="IP {{ service.1 }}"> {{ service.0 }} :</h3>
</td>
<td class="overviewTd" style="padding-top: 10px;">
<pre style="font-size: 12px;">
{{ service.2 }}
</pre>
</td>
<td>
<pre style="font-size: 12px; padding-left: 0px;">
{{ service.3 }}
</pre>
</td>
<td style="padding: 10px; padding-bottom: 0;font-size: 12px;">
<pre style="padding-left: 0px; margin: 0;">
{{ service.4 }}
</pre>
</td>
<td></td>
</tr>
{% endfor %}