mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
12 lines
252 B
HTML
12 lines
252 B
HTML
{% assign map = "B,KB,MB,GB" | split: "," %}
|
|
|
|
{% assign v = include.input | to_integer %}
|
|
{% for suffix in map %}
|
|
|
|
{% if v < 1000.0 %}
|
|
{{ v | round: 2 }} {{ suffix }}
|
|
{% break %}
|
|
{% endif %}
|
|
|
|
{% assign v = v | divided_by: 1000.0 %}
|
|
{% endfor %}
|