{% extends "base.html" %} {% block content %}
{% if item.icon_filename %}{% endif %}

{{item.display_name}}

{% if item.keywords %}
{% for k in item.keywords.split(',') if k.strip() %}{{k.strip()}}{% endfor %}
{% endif %}
{% if is_admin %}
Add download optionsEdit file
{% endif %}
{% if item.notes %}

Notes

{{item.notes}}

{% endif %}

Download options

{% for v in versions %}

{{v.version_label}} {% if v.is_latest %}Latest{% endif %}

{{v.original_name}} · {{'%.1f' % (v.size_bytes/1048576)}} MB · Uploaded {{v.uploaded_at}}
{% if v.mime_type=='application/pdf' or v.original_name.lower().endswith('.pdf') %}Read PDF{% endif %}Download{% if is_admin %}Edit option{% endif %}
{% if v.windows_supported %}Windows{% if v.windows_version %}: {{v.windows_version}}{% endif %}{% endif %}{% if v.mac_supported %}macOS{% if v.mac_version %}: {{v.mac_version}}{% endif %}{% endif %}{% if v.linux_supported %}Linux{% if v.linux_version %}: {{v.linux_version}}{% endif %}{% endif %}
{% if v.categories %}
{% for c in v.categories %}{{c}}{% endfor %}
{% endif %} {% if v.sha256 %}
SHA-256 {{v.sha256}}
{% endif %} {% if v.metadata and v.metadata|length > 4 %}{% endif %} {% if is_admin %}
{% if not v.is_latest %}
{% endif %}
{% endif %}
{% endfor %}
{% if is_admin %}
{% endif %} {% endblock %}