{% extends "app/plugins/templates/base.html" %} {% load i18n %} {% block content %}

{% trans 'Diagnostic Information' %}

{% trans 'Storage Space' %}

{% trans 'Free' context 'Megabytes of storage space' %}: {{ free_disk_space|filesizeformat }} | {% trans 'Used' context 'Megabytes of storage space' %}: {{ used_disk_space|filesizeformat }} | {% trans 'Total' context 'Megabytes of storage space' %}: {{ total_disk_space|filesizeformat }}

{% if total_memory %}

{% trans 'Memory' context 'Computer memory (RAM)' %}

{% trans 'Free' context 'Megabytes of memory space' %}: {{ free_memory|filesizeformat }} | {% trans 'Used' context 'Megabytes of memory space' %}: {{ used_memory|filesizeformat }} | {% trans 'Total' context 'Megabytes of memory space'%}: {{ total_memory|filesizeformat }}

{% endif %}

{% trans 'Note!' %} {% blocktrans with win_hyperv_link="Windows (Hyper-V)" win_wsl2_link="Windows (WSL2)" mac_link="MacOS" %}These values might be relative to the virtualization environment in which the application is running, not necessarily the values of the your machine. See instructions for {{ win_hyperv_link }}, {{ win_wsl2_link }}, and {{ mac_link }} for changing these values in a Docker setup.{% endblocktrans %}
{% endblock %}