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.
13 lines
461 B
13 lines
461 B
{% for option in options %}
|
|
<tr style="width: 50%;" id="option-{{option.0}}" class="newoption update">
|
|
<td class="padding10 first-collumn">
|
|
{{ option.0 }}
|
|
</td>
|
|
<td class="first-collumn" style="width: 77%;">
|
|
<input type="text" id="option-body-{{option.0}}" class="form-control" value="{{option.1}}" size="60">
|
|
</td>
|
|
<td>
|
|
<a class="delete" onclick="confirmDeleteOption({{option.0}})" style="cursor: pointer;"></a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %} |