gns3-registry/templates/devices.html
2015-07-16 15:24:20 +02:00

9 lines
225 B
HTML

{% extends "layout/default.html" %}
{% block body %}
<ul>
{% for device in devices %}
<li><a href="/devices/{{device["id"]}}.html">{{device["name"]}}</a></li>
{% endfor %}
</ul>
{% endblock %}