gns3-registry/templates/device.html

33 lines
1.7 KiB
HTML
Raw Normal View History

2015-07-16 15:24:20 +02:00
{% extends "layout/default.html" %}
{% 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>
{% if "qemu" in device %}
<h2>Qemu settings</h2>
{% for key in device["qemu"] %}
{{ key }}: {{ device["qemu"][key] }}<br />
{% endfor %}
{% endif %}
2015-07-16 15:24:20 +02:00
{% for image_type in device["images"] %}
<h2>Images for {{image_type}}</h2>
{% for image in device["images"][image_type] %}
<h3>{{image["filename"]}}</h3>
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 />
<button class="btn btn-primary btn-lg" type="button" onclick='gns3.download("{{device|jsonify|escape_quote}}", "{{image["md5sum"]}}")'>Download</button>
{% endif %}
<button class="btn btn-primary btn-lg" type="button" onclick='gns3.install("{{device|jsonify|escape_quote}}", "{{image["md5sum"]}}")'>Install</button>
{% endfor %}
2015-07-16 15:24:20 +02:00
{% endfor %}
{% endblock %}