{% extends "report_base.html" %} {% block content %}
{% include "report_buttons.html" %} Report: File formats count
Storage Service: {{ storage_service_name }}
{% if storage_location_description %} Location: {{ storage_location_description }}
{% endif %} {% if start_date and end_date %} {{ total_file_count }} original files ingested between {{ start_date.strftime('%Y-%m-%d') }} and {{ end_date.strftime('%Y-%m-%d') }} {% elif start_date %} {{ total_file_count }} original files ingested on and since {{ start_date.strftime('%Y-%m-%d') }} {% elif end_date %} {{ total_file_count }} original files ingested on and before {{ end_date.strftime('%Y-%m-%d') }} {% else %} {{ total_file_count }} original files {% endif %}
{{ formats_count }} different file formats totalling {{ total_size | filesizeformat }}
{% if formats %} {% for column in columns %} {% endfor %} {% for format in formats %} {% endfor %}
{{ column }}
{{ format["Format"] }} {{ format["Count"] }} {{ format["Size"] | filesizeformat }}
{% else %}

No file formats to display.

{% endif %} {% endblock %}