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.
27 lines
804 B
27 lines
804 B
{% extends "base.html" %}
|
|
{% block content %}
|
|
<script src="/inc/users.js"></script>
|
|
<table class="overview">
|
|
<tr class="overviewHead">
|
|
<td class="padding10 first-collumn">Note</td>
|
|
<td>Server</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="padding10 first-collumn">
|
|
<b>Haproxy-WI will try install haproxy-1.18.5, if it does not work then haproxy-1.15</b>
|
|
</td>
|
|
<td class="padding10 first-collumn">
|
|
<select autofocus required name="{{select_id}}" id="{{select_id}}">
|
|
<option disabled selected>Choose server</option>
|
|
{% for select in selects %}
|
|
<option value="{{ select.2 }}">{{ select.1 }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</td>
|
|
<td>
|
|
<a class="ui-button ui-widget ui-corner-all" id="install" title="Install HAProxy">Install</a>
|
|
</td>
|
|
</table>
|
|
<div id="ajax"></div>
|
|
{% endblock %} |