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

{% trans "Available storage locations" %}

{% trans "Storage locations are configured by an administrative user in the Archivematica Storage Service." %}

{% if locations %} {% for location in locations %} {% endfor %}
{% trans "Purpose" %} {% trans "Description" %} {% trans "Used / available" %} {% trans "Path" %}
{{ location.purpose }} {{ location.description }} {% if location.show_usage %} {{ location.used }} / {{ location.quota }} {% else %} {% trans "N/A" %} {% endif %} {{ location.path }}
{% else %}

{% trans "No available locations." %}

{% endif %}
{% endblock %}