mirror of https://github.com/Aidaho12/haproxy-wi
11 lines
339 B
HTML
11 lines
339 B
HTML
<select autofocus required name="serv" id="{{ select_id }}">
|
|
<option disabled>------</option>
|
|
{% for select in selects %}
|
|
{% if select.2 == serv %}
|
|
<option value="{{ select.2 }}" selected>{{ select.1 }}</option>
|
|
{% else %}
|
|
<option value="{{ select.2 }}">{{ select.1 }}</option>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</select>
|
|
|