{% extends "layout/base.html" %} {% block title -%} {{- explorer_instance_title or 'ODC' }} Products {%- endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

{{ (datacube_products | count ) - (hidden_product_list | length) }} Products

Total products: {{ datacube_products | count }}, Hidden products: {{ hidden_product_list | length }}
Text Stac Yaml
{% if grouped_products %} {% for group_name, product_summaries in grouped_products %} {% if group_name %} {% endif %} {% if product_summaries %} {% for product, summary in product_summaries %} {% if product.name not in hidden_product_list %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% endif %}
{{ group_name }} {{ hanchor(group_name + '-group') }}
{{ product.name }} {{- product.definition.description -}}
{% endblock %}