{% extends "layout/default.html" %} {% 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 "qemu" in device %}

Qemu settings

{% for key in device["qemu"] %} {{ key }}: {{ device["qemu"][key] }}
{% endfor %} {% endif %} {% for image_type in device["images"] %}

Images for {{image_type}}

{% for image in device["images"][image_type] %}

{{image["filename"]}}

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 %}