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

18 lines
397 B
HTML

<style>
.div-backends {
height: auto !important;
}
</style>
{% if backends == 'Cannot get backends' %}
{{backends}}
{% else %}
{% for b in backends %}
{% if service == 'haproxy' %}
<a href="/app/sections.py?serv={{ serv}}&section={{b}}" title="Edit backend {{b}}" target="_blank" style="padding-right: 10px;">
{{b}}
</a>
{% else %}
{{b}}
{% endif %}
{% endfor %}
{% endif %}