Browse Source

v3.4

Litle improved
pull/98/head
Aidaho12 6 years ago
parent
commit
2fefe88222
  1. 4
      app/templates/admin.html
  2. 4
      app/templates/servers.html
  3. 14
      app/templates/settings.html
  4. BIN
      image/haproxy-wi-admin-area.jpeg

4
app/templates/admin.html

@ -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>

4
app/templates/servers.html

@ -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>

14
app/templates/settings.html

@ -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}}

BIN
image/haproxy-wi-admin-area.jpeg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 350 KiB

After

Width:  |  Height:  |  Size: 392 KiB

Loading…
Cancel
Save