gns3-registry/templates/device.html

60 lines
2.5 KiB
HTML
Raw Normal View History

2015-07-16 15:24:20 +02:00
{% extends "layout/default.html" %}
2015-08-05 23:58:53 +02:00
{% 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 <a href=\"/downloads.html\">Downloads</a> section");
return true;
}
return false;
}
{% endblock %}
2015-07-16 15:24:20 +02:00
{% block body %}
<div class="jumbotron">
<h1>{{ device["name"] }}</h1>
Category {{ device["category"] }}<br />
Product: <a href="{{ device["product_url"] }}">{{ device["product_name"] }}</a><br />
Vendor: <a href="{{ device["vendor_url"] }}">{{ device["vendor_name"] }}</a><br />
Documentation: <a href="{{ device["documentation_url"] }}">{{ device["documentation_url"] }}</a><br />
Status: {{ device["status"] }}<br />
Maintainer: <a href="mailto:{{ device["maintainer_email"] }}">{{ device["maintainer"] }}</a>
2015-07-16 15:24:20 +02:00
</div>
2015-08-06 14:56:56 +02:00
{% if device["status"] == "broken" %}
<div class="alert alert-danger" role="alert">
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
<span class="sr-only">Error:</span>
This appliance is actually not working
</div>
{% endif %}
{% if "qemu" in device %}
<h2>Qemu settings</h2>
{% for key in device["qemu"] %}
{{ key }}: {{ device["qemu"][key] }}<br />
{% endfor %}
{% endif %}
{% for version in device["versions"] | reverse %}
<h2>{{ device["name"] }} {{version["name"]}}</h2>
2015-08-05 23:58:53 +02:00
<button class="btn btn-primary btn-lg" type="button" onclick='gns3_button(function() { return gns3.install("{{device|jsonify|b64encode}}", "{{version["name"]}}") })'>Install</button>
<h3>Require files</h3>
{% for image in version.images.values() %}
<h4>{{image["filename"]}}</h4>
Slot: {{image["type"]}}<br />
File Version: {{image["version"]}}<br />
Checksum: {{image["md5sum"]}}<br />
Download url: <a href="{{image["download_url"]}}">{{image["download_url"]}}</a><br />
{% if "direct_download_url" in image %}
Direct download url: <a href="{{image["direct_download_url"]}}">{{image["direct_download_url"]}}</a><br />
2015-08-05 23:58:53 +02:00
<button class="btn btn-primary btn-lg" type="button" onclick='return download("{{device|jsonify|b64encode}}", "{{image["md5sum"]}}")'>Download</button>
{% endif %}
<hr />
{% endfor %}
2015-07-16 15:24:20 +02:00
{% endfor %}
{% endblock %}