mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-15 04:49:10 +00:00
42 lines
845 B
HTML
42 lines
845 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<h1>
|
|
Controller status
|
|
</h1>
|
|
The purpose of this page is to help for GNS3 debug. This can be dropped
|
|
in futur GNS3 versions.
|
|
|
|
<h2>Opened projects</h2>
|
|
<table border="1">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>ID</td>
|
|
<th>VMs</th>
|
|
<th>Links</th>
|
|
</tr>
|
|
{% for project in controller.projects.values() %}
|
|
<tr>
|
|
<td><a href="/projects/{{project.id}}">{{project.name}}</a></td>
|
|
<td><a href="/projects/{{project.id}}">{{project.id}}</a></td>
|
|
<td>{{project.vms|length}}</td>
|
|
<td>{{project.links|length}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
<h2>Hypervisors</h2>
|
|
<table border="1">
|
|
<tr>
|
|
<th>ID</td>
|
|
</tr>
|
|
{% for hypervisor in controller.hypervisors.values() %}
|
|
<tr>
|
|
<td>{{hypervisor.id}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|
|
{%endblock%}
|
|
|