mirror of https://github.com/Aidaho12/haproxy-wi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
397 B
18 lines
397 B
<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}}§ion={{b}}" title="Edit backend {{b}}" target="_blank" style="padding-right: 10px;">
|
|
{{b}}
|
|
</a>
|
|
{% else %}
|
|
{{b}}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %} |