{% extends "report_base.html" %} {% block content %}
{% include "report_buttons.html" %} Report: Storage locations
Storage Service: {{ storage_service_name }}
Start date: {{ start_date.strftime('%Y-%m-%d') }}
End date: {{ end_date.strftime('%Y-%m-%d') }}
{% if locations %} {% for column in columns %} {% endfor %} {% for location in locations %} {% endfor %}
{{ column }}
{{ location["UUID"] }} {{ location["StorageLocation"] }} {{ location["AIPs"] }} {{ location["Size"] | filesizeformat }} {{ location["FileCount"] }}
{% else %}

No Storage Locations to display.

{% endif %} {% endblock %}