{% extends "package/read.html" %} {% block bodytag %} {{ super() }} class="site-collection-summary" {% endblock %} {% block package_resources %} {% endblock package_resources %} {% block secondary_content %} {% endblock secondary_content %} {% block collection %} {% set collection_id = pkg.get('id') %} {% set collection = h.get_collection_info(collection_id) %} {% set collection_title = collection['title'] if collection else None %} {% if collection['members'] %}
{% trans title=collection_title %}This is the overview page of the "{{ title }}" series. It contains the following datasets (newer datasets first):{% endtrans %}
{% snippet 'snippets/package_list.html', packages=collection['members'] | reverse() %} {% endif %} {% endblock collection %}