RAM
{% if computer.current_ram_used_gb is not none and computer.current_ram_total_gb is not none %}
{{ computer.current_ram_used_gb | round(1) }} / {{ computer.current_ram_total_gb | round(1) }} GB
({{ computer.current_ram_percent | round(1) if computer.current_ram_percent is not none else '-' }}%)
{% else %}
{{ computer.current_ram_percent | round(1) if computer.current_ram_percent is not none else '-' }}%
{% endif %}
{% if computer.current_ram_available_gb is not none %}
доступно {{ computer.current_ram_available_gb | round(1) }} GB
{% endif %}