{% extends "layout_fluid.html" %} {% load breadcrumb %} {% load i18n %} {% block title %}{% trans "Usage" %}{% endblock %} {% block h1 %}{% trans "Usage" %}{% endblock %} {% block page_id %}Usage{% endblock %} {% block content %}
{% include "administration/sidebar.html" %}

{% trans "Processing storage usage" %}

{% blocktrans trimmed %} The processing storage location is determined in the Archivematica pipeline with the shared directory configuration path and in the Storage Service with the currently processing location associated with this pipeline. {% endblocktrans %}


{% if not calculate_usage %}

{% blocktrans trimmed %} By clicking the button below, this page will be reloaded calculating the space and usage of the entire disk where the shared directory is located. This process may take a long time depending on the disk configuration and its usage. {% endblocktrans %}

{% trans "Calculate disk usage" %} {% else %}

{% trans "General information:" %}

{% blocktrans trimmed %} This section displays the location where the disk is mounted on the system and its current usage and space alongside the shared directory path and size. {% endblocktrans %}

  • {% trans "Disk location" %}: {{ root.path }}
  • {% trans "Disk usage" %}: {{ root.used|filesizeformat }} / {{ root.size|filesizeformat }} ({% widthratio root.used root.size 100 %}%)
  • {% trans "Shared directory" %}: {{ shared.path }}
  • {% trans "Shared directory size" %}: {{ shared.used|filesizeformat }} ({% widthratio shared.used root.size 100 %}%)

{% trans "Clearable directories:" %}

{% blocktrans trimmed %} This table displays some directories within the shared directory that can be cleared manually. {% endblocktrans %}

{% for id, dir in usage_dirs.items %} {% endfor %}
{% trans "Purpose" %} {% trans "Size" %} {% trans "Path" %}
{{ dir.description }} {{ dir.used|filesizeformat }} {{ dir.path }} {% trans "Clear" %} ↗
{% endif %}
{% endblock %}