1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-23 23:38:21 +00:00

Show on wich compute node a VM is running in the debug page

This commit is contained in:
Julien Duponchelle 2016-04-21 16:18:15 +02:00
parent 1a22fb9250
commit 4a99a172a3
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -27,12 +27,14 @@ in futur GNS3 versions.
<tr>
<th>Name</th>
<th>ID</td>
<th>Compute</th>
<th>Console</th>
</tr>
{% for vm in project.vms.values() %}
<tr>
<td>{{vm.name}}</td>
<td>{{vm.id}}</td>
<td>{{vm.compute.id}}</td>
<td><a href="{{vm.console_type}}://{{vm.host}}:{{vm.console}}">Console</a>
</tr>
{% endfor %}