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.
haproxy-wi/app/templates/ajax/show_user_current_group.html

15 lines
428 B

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