mirror of https://github.com/Aidaho12/haproxy-wi
15 lines
428 B
HTML
15 lines
428 B
HTML
<table class="overview" style="border: none;">
|
|
<tr style="border: none;">
|
|
<td style="border: none">
|
|
<select id="newCurrentGroup" name="newCurrentGroup" >
|
|
{% for g in groups %}
|
|
{% if g.0|string() == group|string() %}
|
|
<option value="{{ g.0 }}" selected>{{ g.1 }}</option>
|
|
{% else %}
|
|
<option value="{{ g.0 }}">{{ g.1 }}</option>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table> |