2016-03-15 10:32:10 +00:00
|
|
|
{% extends "layout.html" %}
|
2016-03-17 16:32:37 +00:00
|
|
|
|
2016-03-15 10:32:10 +00:00
|
|
|
{% 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>
|
2016-04-15 15:57:06 +00:00
|
|
|
<td>{{project.vms|length}}</td>
|
|
|
|
<td>{{project.links|length}}</td>
|
2016-03-15 10:32:10 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
<h2>Computes</h2>
|
2016-03-15 10:32:10 +00:00
|
|
|
<table border="1">
|
|
|
|
<tr>
|
|
|
|
<th>ID</td>
|
|
|
|
</tr>
|
2016-04-15 15:57:06 +00:00
|
|
|
{% for compute in controller.computes.values() %}
|
2016-03-15 10:32:10 +00:00
|
|
|
<tr>
|
2016-04-15 15:57:06 +00:00
|
|
|
<td>{{compute.id}}</td>
|
2016-03-15 10:32:10 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
{%endblock%}
|