61e7290ce8
Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
315 B
HTML
13 lines
315 B
HTML
{% macro format_size(bytes) %}
|
|
{% set size = bytes|float %}
|
|
{% if size < 1024 %}
|
|
{{ size|int }} Б
|
|
{% elif size < 1048576 %}
|
|
{{ "%.1f"|format(size / 1024) }} КБ
|
|
{% elif size < 1073741824 %}
|
|
{{ "%.1f"|format(size / 1048576) }} МБ
|
|
{% else %}
|
|
{{ "%.1f"|format(size / 1073741824) }} ГБ
|
|
{% endif %}
|
|
{% endmacro %}
|