{% extends "base.html" %} {% block content %}

Files

Browse file groups and choose Windows, macOS, Linux or other download/version options on each file page.

{% if is_admin %}Upload file{% endif %}
{% for x in items %}
{% if x.icon_filename %} {% else %}
{{ (x.original_name or x.display_name).split('.')[-1][:4]|upper }}
{% endif %}

{{x.display_name}}

Download: {{x.version_label or 'No version'}} {% if x.size_bytes %} ยท {{ '%.1f' % (x.size_bytes / 1048576) }} MB{% endif %}
{% if x.windows_supported %}Windows{% if x.windows_version %}: {{x.windows_version}}{% endif %}{% endif %} {% if x.mac_supported %}macOS{% if x.mac_version %}: {{x.mac_version}}{% endif %}{% endif %} {% if x.linux_supported %}Linux{% if x.linux_version %}: {{x.linux_version}}{% endif %}{% endif %}
{% if x.category_names %}
{% for c in x.category_names.split('||') if c %}{{c}}{% endfor %}
{% endif %} {% if x.keywords %}
{% for k in x.keywords.split(',') if k.strip() %}{{k.strip()}}{% endfor %}
{% endif %} {% if x.notes %}

{{x.notes}}

{% endif %}
{% if x.version_id %} {% if x.mime_type=='application/pdf' or (x.original_name and x.original_name.lower().endswith('.pdf')) %}Read PDF{% endif %} Download {% endif %}
{% else %}
No files found.
{% endfor %}
{% endblock %}