{% extends "base.html" %} {% set active_nav = "results" %} {% block title %}Release {{ release.package_number }} - LSMC Atlas{% endblock %} {% block content %}

Artifacts

{{ artifacts|length }} file{{ 's' if artifacts|length != 1 }}
{% if artifacts %}
{% for artifact in artifacts %} {% endfor %}
Filename Type Size
{% if artifact.artifact_type == 'REPORT' %}📄{% elif artifact.artifact_type == 'DATA' %}📊{% elif artifact.artifact_type == 'FASTQ' %}🧬{% else %}📁{% endif %}
{{ artifact.filename or "Unnamed" }}
{{ artifact.mime_type or "application/octet-stream" }}
{{ artifact.artifact_type }} {% if artifact.size_bytes %} {{ (artifact.size_bytes / 1024 / 1024)|round(2) }} MB {% else %} — {% endif %} {% if release.status == 'RELEASED' %} Download {% else %} Pending release {% endif %}
{% else %}

No artifacts in this package

{% endif %}

Release Details

Release Type
{{ release.release_type }}
{% if order %} {% endif %} {% if release.released_by %}
Released By
{{ release.released_by }}
{% endif %} {% if release.notes %}
Notes
{{ release.notes }}
{% endif %}
{% if release.status == 'RELEASED' and artifacts %}

Bulk Download

Download All Files

ZIP archive of all artifacts

{% endif %}
{% endblock %}