mirror of https://github.com/Aidaho12/haproxy-wi
parent
e902002ec5
commit
aecebbb49e
|
@ -263,7 +263,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select id="new-server-group-add" name="new-server-group-add">
|
<select id="new-server-group-add" name="new-server-group-add">
|
||||||
<option disabled selected>Choose group</option>
|
<option disabled selected value="0">Choose group</option>
|
||||||
{% for group in groups %}
|
{% for group in groups %}
|
||||||
<option value="{{ group.0 }}">{{ group.1 }}</option>
|
<option value="{{ group.0 }}">{{ group.1 }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -287,7 +287,7 @@
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select id="credentials">
|
<select id="credentials" required>
|
||||||
<option disabled selected>Choose credentials</option>
|
<option disabled selected>Choose credentials</option>
|
||||||
{% for ssh in sshs %}
|
{% for ssh in sshs %}
|
||||||
<option value="{{ssh.0}}">{{ssh.1}}</option>
|
<option value="{{ssh.0}}">{{ssh.1}}</option>
|
||||||
|
|
|
@ -124,15 +124,15 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select id="slavefor">
|
<select id="slavefor">
|
||||||
<option disabled selected>Not slave</option>
|
<option disabled selected value="0">Not slave</option>
|
||||||
{% for master in masters %}
|
{% for master in masters %}
|
||||||
<option value="{{master.0}}">{{master.1}}</option>
|
<option value="{{master.0}}">{{master.1}}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<select id="credentials">
|
<select id="credentials" required>
|
||||||
<option disabled selected>Choose credentials</option>
|
<option disabled selected value="0">Choose credentials</option>
|
||||||
{% for ssh in sshs %}
|
{% for ssh in sshs %}
|
||||||
{% if ssh.5|string() == ssh_group.0 %}
|
{% if ssh.5|string() == ssh_group.0 %}
|
||||||
<option value="{{ssh.0}}">{{ssh.1}}</option>
|
<option value="{{ssh.0}}">{{ssh.1}}</option>
|
||||||
|
|
Loading…
Reference in New Issue