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

{{ appliance["name"] }}

Category {{ appliance["category"] }}
Product: {{ appliance["product_name"] }}
Vendor: {{ appliance["vendor_name"] }}
Documentation: {{ appliance["documentation_url"] }}
Status: {{ appliance["status"] }}
Maintainer: {{ appliance["maintainer"] }}

{{ appliance["description"] | nl2br }}

{% if appliance["usage"] %}

Usage

{{ appliance["usage"] | nl2br }}

{% endif %} {% if "qemu" in appliance %}

Qemu settings

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

{{ appliance["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 %}