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

{{item.display_name}}

{{item.category_name or 'Uncategorised'}}
{% if item.keywords %}
{% for k in item.keywords.split(',') if k.strip() %}{{k.strip()}}{% endfor %}
{% endif %}
{% if is_admin %}Edit file{% endif %}
{% if item.notes %}

Notes

{{item.notes}}

{% endif %}

Versions

{% 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 version{% 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.sha256 %}
SHA-256 {{v.sha256}}
{% endif %} {% if v.metadata %} {% endif %} {% if is_admin %}
{% if not v.is_latest %}
{% endif %}
{% endif %}
{% endfor %}
{% if is_admin %}
{% endif %} {% endblock %}