{% extends "layout/base.html" %} {% set active_page = "dsreport" %} {% block title %}Dataset Count Report{% endblock %} {% block head %} {% endblock %} {% block content %}

Bulk Dataset Counts - {{ (datacube_products | length ) - (hidden_product_list | length) }} Products

Total indexed products: {{ datacube_products | length }}, hidden products: {{ hidden_product_list | length }}
Download csv for all products dataset count csv

An empty value means "all"

{% for period, count in products_period_dscount.items() %} {% if period[0] not in hidden_product_list %} {% endif %} {% endfor %}
Product Name Year Month Count
{{ period[0] }} {{ period[1] or '' }} {{ period[2] | month_name if period[2] else '' }} {{ count }}
{% endblock %}