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.
15 lines
428 B
15 lines
428 B
5 years ago
|
<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>
|