{% extends "base.html" %} {% block title %}sharktopus — inventory{% endblock %} {% block content %}

Inventory

On disk

{{ summary.n | short_num }}files {{ summary.bytes | human_bytes }}bytes

By date

{% if by_date %}
    {% for r in by_date[:5] %}
  • {{ r.date }} — {{ r.n }} files · {{ r.bytes | human_bytes }}
  • {% endfor %}
{% else %}

No dated files yet. Run a download or press Scan cache.

{% endif %}

Recent files

{% if files %} {% for f in files %} {% endfor %}
datecyclefxxsizepath
{{ f.date or '—' }} {% if f.cycle %}{{ f.cycle }}z{% else %}—{% endif %} {% if f.fxx is not none %}f{{ '%03d' | format(f.fxx) }}{% else %}—{% endif %} {{ f.size_bytes | human_bytes }} {{ f.path }}
{% else %}

No files scanned yet. Click Scan cache.

{% endif %}
{% endblock %}