mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
40 lines
683 B
HTML
40 lines
683 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<h1>
|
|
{{project.name}}
|
|
</h1>
|
|
The purpose of this page is to help for GNS3 debug. This can be dropped
|
|
in futur GNS3 versions.
|
|
|
|
<h2>VMs</h2>
|
|
<table border="1">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>ID</td>
|
|
<th>Console</th>
|
|
</tr>
|
|
{% for vm in project.vms.values() %}
|
|
<tr>
|
|
<td>{{vm.name}}</td>
|
|
<td>{{vm.id}}</td>
|
|
<td><a href="{{vm.console_type}}://{{vm.host}}:{{vm.console}}">Console</a>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<h2>Links</h2>
|
|
<table border="1">
|
|
<tr>
|
|
<th>ID</td>
|
|
</tr>
|
|
{% for link in project.links.values() %}
|
|
<tr>
|
|
<td>{{link.id}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|
|
{%endblock%}
|
|
|