1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-15 04:49:10 +00:00
gns3-server/gns3server/templates/status.html
2015-12-18 14:38:26 +01:00

30 lines
518 B
HTML

{% extends "layout.html" %}
{% block body %}
<h1>
Server status
</h1>
The purpose of this page is to help for GNS3 debug.
<h2>Opened projects</h2>
<ul>
{% for project in project_manager.projects %}
<li>{{project.name}} ({{project.id}})</li>
{% endfor %}
</ul>
<h2>Ports reserved by GNS3</h2>
<h3>TCP</h3>
<ul>
{% for port in port_manager.tcp_ports %}
<li>{{port}}</li>
{% endfor %}
</ul>
<h3>UDP</h3>
<ul>
{% for port in port_manager.udp_ports %}
<li>{{port}}</li>
{% endfor %}
</ul>
{% endblock %}