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/new_group.html

17 lines
623 B

7 years ago
{% for group in groups %}
<tr id="group-{{ group.0 }}" class="newgroup">
<td class="padding10 first-collumn">
<input type="text" id="name-{{ group.0 }}" value="{{ group.1 }}" class="form-control">
</td>
<td style="width: 100%;">
{% if group.2 != 'None' %}
<input type="text" id="descript-{{ group.0 }}" value="{{ group.2 }}" class="form-control" size="60">
{% else %}
<input type="text" id="descript-{{ group.0 }}" class="form-control" size="60">
{% endif %}
7 years ago
</td>
<td>
<a class="delete" onclick="confirmDeleteGroup({{ group.0 }})" style="cursor: pointer;"></a>
7 years ago
</td>
</tr>
{% endfor %}