{# Current-state fragment for the full-metrics page — polled live via HTMX. Self-contained (defines its own format macros) so each poll re-renders the latest snapshot the server has. #} {% macro fmt_bps(v) %} {%- if v is none -%}— {%- elif v >= 1048576 -%}{{ "%.1f"|format(v / 1048576) }} MB/s {%- elif v >= 1024 -%}{{ "%.1f"|format(v / 1024) }} KB/s {%- else -%}{{ "%.0f"|format(v) }} B/s {%- endif -%} {% endmacro %} {% macro fmt_bytes(v) %} {%- if v is none -%}— {%- elif v >= 1125899906842624 -%}{{ "%.1f"|format(v / 1125899906842624) }} PB {%- elif v >= 1099511627776 -%}{{ "%.1f"|format(v / 1099511627776) }} TB {%- elif v >= 1073741824 -%}{{ "%.1f"|format(v / 1073741824) }} GB {%- elif v >= 1048576 -%}{{ "%.0f"|format(v / 1048576) }} MB {%- else -%}{{ "%.0f"|format(v / 1024) }} KB {%- endif -%} {% endmacro %} {% macro bar(pct) %} {%- set p = pct if pct is not none else 0 -%}
{% endmacro %} {# ── Identity / metadata ─────────────────────────────────────────────────── #}