{% extends "layout/default.html" %} {% block script %} function download(device, md5sum) { if (gns3_button(function() { return gns3.download(device, md5sum) })) { gns3_notif("success", "You can see the download progress in the Downloads section"); return true; } return false; } {% endblock %} {% block body %}

{{ device["name"] }}

Category {{ device["category"] }}
Product: {{ device["product_name"] }}
Vendor: {{ device["vendor_name"] }}
Documentation: {{ device["documentation_url"] }}
Status: {{ device["status"] }}
Maintainer: {{ device["maintainer"] }}
{% if device["status"] == "broken" %} {% endif %} {% if "qemu" in device %}

Qemu settings

{% for key in device["qemu"] %} {{ key }}: {{ device["qemu"][key] }}
{% endfor %} {% endif %} {% for version in device["versions"] | reverse %}

{{ device["name"] }} {{version["name"]}}

Require files

{% for image in version.images.values() %}

{{image["filename"]}}

Slot: {{image["type"]}}
File Version: {{image["version"]}}
Checksum: {{image["md5sum"]}}
Download url: {{image["download_url"]}}
{% if "direct_download_url" in image %} Direct download url: {{image["direct_download_url"]}}
{% endif %}
{% endfor %} {% endfor %} {% endblock %}