{% macro fmt_bytes(b) %} {%- if b == 0 %}0 B {%- elif b < 1048576 %}{{ "%.1f"|format(b/1024) }} KB {%- elif b < 1073741824 %}{{ "%.1f"|format(b/1048576) }} MB {%- elif b < 1099511627776 %}{{ "%.1f"|format(b/1073741824) }} GB {%- else %}{{ "%.1f"|format(b/1099511627776) }} TB {%- endif %} {%- endmacro %} {% if not filesystems %}

Keine Dateisysteme gefunden.

{% else %}
{% for fs in filesystems %}
{{ fs.mountpoint }}
Total
{{ fmt_bytes(fs.total) }}
Belegt
{{ fmt_bytes(fs.used) }}
Frei
{{ fmt_bytes(fs.available) }}
{{ fs.filesystem }}
{% endfor %}
{% endif %}