mirror of https://github.com/Aidaho12/haproxy-wi
parent
34d67e1e61
commit
2fefe88222
|
@ -147,7 +147,7 @@
|
|||
<td class="checkbox-head"><span title="Vitrual IP, something like VRRP">Virt(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Alert if backend change status. Before enable add Telgram chanel at Checker tab">Alert(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Enable save and show metrics">Metrics(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Keep active HAProxy service if down">Active(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Keep start HAProxy service if down">Start(?)</span></td>
|
||||
<td class="slave-field"><span title="Actions with master config will automatically apply on slave">Slave for (?)</span></td>
|
||||
<td class="cred-field">Credentials</td>
|
||||
<td>Desciption</td>
|
||||
|
@ -596,7 +596,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="padding20" title="Keep active HAProxy service if down">Active</td>
|
||||
<td class="padding20" title="Keep start HAProxy service if down">Start</td>
|
||||
<td>
|
||||
<label for="active"></label><input type="checkbox" id="active">
|
||||
</td>
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
<td class="checkbox-head"><span title="Vitrual IP, something like VRRP">Virt(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Alert if backend change status. Before enable add Telgram chanel at Checker tab">Alert(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Enable save and show metrics">Metrics(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Keep active HAProxy service if down">Active(?)</span></td>
|
||||
<td class="checkbox-head"><span title="Keep start HAProxy service if down">Start(?)</span></td>
|
||||
<td class="slave-field"><span title="Actions with master config will automatically apply on slave">Slave for (?)</span></td>
|
||||
<td class="cred-field">Credentials</td>
|
||||
<td>Desciption</td>
|
||||
|
@ -465,7 +465,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="padding20" title="Keep active HAProxy service if down">Active</td>
|
||||
<td class="padding20" title="Keep start HAProxy service if down">Start</td>
|
||||
<td>
|
||||
<label for="active"></label><input type="checkbox" id="active">
|
||||
</td>
|
||||
|
|
|
@ -23,7 +23,19 @@
|
|||
<tr class="{{ loop.cycle('odd', 'even') }}">
|
||||
<td class="addName">{{set.0}}</td>
|
||||
<td class="addOption">
|
||||
<input type="text" name="{{set.0}}" id="{{set.0}}" value="{{set.1}}" title="" size="25" class="form-control">
|
||||
{% if set.0 == 'ldap_password' %}
|
||||
{% if set.1 == 'None' %}
|
||||
<input type="password" name="{{set.0}}" id="{{set.0}}" value="" title="" size="25" class="form-control">
|
||||
{% else %}
|
||||
<input type="password" name="{{set.0}}" id="{{set.0}}" value="{{set.1}}" title="" size="25" class="form-control">
|
||||
{% endif %}
|
||||
{% else %}
|
||||
{% if set.1 == 'None' %}
|
||||
<input type="text" name="{{set.0}}" id="{{set.0}}" value="" title="" size="25" class="form-control">
|
||||
{% else %}
|
||||
<input type="text" name="{{set.0}}" id="{{set.0}}" value="{{set.1}}" title="" size="25" class="form-control">
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="addOption">
|
||||
{{set.3}}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 350 KiB After Width: | Height: | Size: 392 KiB |
Loading…
Reference in New Issue