{% extends "layout/base.html" %} {% block title %}About Products{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block panel %} {% endblock %} {% block content %}

Storage of {{ product_summary_and_location | length }} products

Open Data Cube {{ datacube_version }} {# TODO: Links to Website, CMI Metadata, DEA, ODC, help? #} csv
{% for product, summary, locations in product_summary_and_location %} {% endfor %}
Name Count Location License Definition Summary Age Derived Products Source Products
{{ product.name | product_link }} {{ '{:,d}'.format(summary.dataset_count) }} {% if locations -%} {%- for location in locations -%}
{{- location.common_prefix -}}
{%- endfor -%} {% else -%} - {%- endif %}
{{ product | product_license_link }} doc {{ summary.last_refresh_time | timesince }} {% if summary.derived_products %} {% for p in summary.derived_products %}
  • {{ p | product_link }}
  • {% endfor%} {% else %} - {% endif %}
    {% if summary.source_products %} {% for p in summary.source_products %}
  • {{ p | product_link}}
  • {% endfor%} {% else %} - {% endif %}
    {% endblock %}