{% extends "layout.html" %}
{% block head %}
{% endblock %}
{% block body %}
{{project.name}}
The purpose of this page is to help for GNS3 debug. This can be dropped
in futur GNS3 versions.
Nodes
Name |
ID |
Compute |
Console |
{% for node in project.nodes.values() %}
{{node.name}} |
{{node.id}} |
{{node.compute.id}} |
Console
|
{% endfor %}
Links
ID |
Capture |
PCAP |
{% for link in project.links.values() %}
{{link.id}} |
{{link.capturing}} |
Download |
{% endfor %}
Shapes
ID |
Position |
Content |
{% for shape in project.shapes.values() %}
{{shape.id}} |
{{shape.x}}, {{shape.y}}, {{shape.z}} |
{{shape.svg}} |
{% endfor %}
Notifications
{%endblock%}