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

No AIPs to display.

{% endif %} {% endblock %}