{% extends "layout/default.html" %} {% block body %}
{% if appliance["status"] == "broken" %} {% endif %} {% if appliance["status"] == "experimental" %} {% 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"]}}

{% if appliance.is_version_installable(version["name"]) %} {% else %}
Can't install this appliance version until you import or download the missing file(s).
{% endif %}

Required files

{% set version_id = loop.index %} {% for image in version.images.values() %} {% if "/" in image["filename"] %} {% set ova, file = image["filename"].split("/") %}

{{ova}}

Location in OVA: {{file}}
{% else %}

{{image["filename"]}}

{% endif %} File Version: {{image["version"]}}
Size: {{ image["filesize"] | human_filesize}}
Checksum: {{image["md5sum"]}}
Download url: {{image["download_url"]}}
{% if "direct_download_url" in image %} Direct download url: {{image["direct_download_url"]}}
{% endif %} {% set image_path = registry.search_image_file(image["filename"], image["md5sum"], image["filesize"]) %} {% if image_path %}

File available: {{image_path}}

{% else %}

File not available

{% if "direct_download_url" in image %} Download {% elif "download_url" in image %} Download {% endif %} {% endif %}
{% endfor %} {% endfor %} {% endblock %}