{% extends "base.html" %} {% block title %}Files — Experiment {{ exp_id }} — ABREKA{% endblock %} {% block extra_css %} .file-tree { font-family: var(--mono); font-size: 13px; } .file-row { display: flex; align-items: center; padding: 4px 8px; border-bottom: 1px solid var(--border); } .file-row:hover { background: var(--primary-light); } .file-name { flex: 1; } .file-name a { color: var(--text); } .file-name a:hover { color: var(--primary); } .file-size { width: 80px; text-align: right; color: var(--muted); font-size: 12px; } .file-label { width: 70px; text-align: right; font-size: 11px; color: var(--muted); } .file-dir { font-weight: 600; } .file-binary { opacity: 0.5; } {% endblock %} {% block content %}

Files — Experiment {{ exp_id }}

{% if entries %}
{% for e in entries %}
{% if e.is_dir %} {{ e.name }}/ {% elif e.is_binary and not e.is_image %} {{ e.name }} {% else %} {{ e.name }} {% endif %} {% if not e.is_dir %}{{ e.size_bytes | filesize }}{% endif %} {% if e.is_binary %}(binary){% endif %}
{% endfor %}
{% else %}

No files found.

{% endif %}
{% endblock %}