mirror of
https://github.com/GNS3/gns3-registry.git
synced 2025-01-02 02:56:41 +00:00
9 lines
225 B
HTML
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 %}
|