mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
33 lines
1.7 KiB
HTML
33 lines
1.7 KiB
HTML
{% load i18n %}
|
|
<table class="table table-hover sortable-theme-bootstrap" data-sortable>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">{% trans "Name" %}<br>{% trans "Description" %}</th>
|
|
<th scope="col">{% trans "Host" %}<br>{% trans "User"%}</th>
|
|
<th scope="col">{% trans "Status" %}</th>
|
|
<th scope="col">{% trans "VCPU" %}</th>
|
|
<th scope="col">{% trans "Memory" %}</th>
|
|
<th scope="col" style="width:200px;" data-sortable="false">{% trans "Actions" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="searchable">
|
|
{% for host, inst in all_host_vms.items %}
|
|
{% for inst, vm in inst.items %}
|
|
<tr>
|
|
<td><a href="{% url 'instances:instance' host.0 inst %}">{{ inst }}</a><br><small><em>{{ info.title }}</em></small></td>
|
|
<td><a href="{% url 'overview' host.0 %}">{{ host.1 }}</a><br><small><em>{% if info.userinstances.count > 0 %}{{ info.userinstances.first_user.user.username }}{% if info.userinstances.count > 1 %} (+{{ info.userinstances.count|add:"-1" }}){% endif %}{% endif %}</em></small></td>
|
|
<td>
|
|
{% if vm.status == 1 %}<span class="text-success">{% trans "Active" %}</span>{% endif %}
|
|
{% if vm.status == 5 %}<span class="text-danger">{% trans "Off" %}</span>{% endif %}
|
|
{% if vm.status == 3 %}<span class="text-warning">{% trans "Suspend" %}</span>{% endif %}
|
|
</td>
|
|
<td>{{ vm.vcpu }}</td>
|
|
<td>{{ vm.memory|filesizeformat }}</td>
|
|
<td class="text-nowrap">
|
|
{% include "instance_actions.html" %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|