{% extends "page.html" %} {% block title %} {{ _('DOI') }}: {{ query_doi.doi }} {% endblock %} {%- block meta -%} {{ super() }} {%- endblock -%} {% block primary_content %} {% asset 'ckanext-query-dois/main' %}

{{ _('DOI') }}: {{ query_doi.doi }}

{% block visual_query %} {% snippet "query_dois/snippets/visual_datastore_multisearch.html", query=query_doi.query %}
{% endblock %} {% block citation %}

{{ _('Cite this as') }}


{{ h.create_multisearch_citation_text(query_doi, html=True) | safe }}


{% endblock %} {% block details %}

{{ _('Details') }}


{{ _('Resource count:') }} {{ resource_count }}
{{ _('Dataset count:') }} {{ package_count }}
{#
#} {# {{ _('License:') }} {% snippet "snippets/license.html", pkg_dict=package, text_only=True %}#} {#
#}
{{ _('Retrieved:') }} {{ query_doi.timestamp }}
{{ _('Total records:') }} {{ query_doi.count }}
{% endblock %} {% block stats %}

{{ _('Statistics') }}


{{ _('Total downloads:') }} {{ downloads }}
{{ _('Total saves:') }} {{ saves }}
{{ _('Last downloaded:') }} {{ last_download_timestamp }}
{% endblock %} {% block resource_breakdown %}

{{ _('Resource breakdown') }}


{% for resource_id, count in sorted_resource_counts %} {% set resource_info = resources[resource_id] %} {% set package_info = packages[resource_info['package_id']] %} {% set resource_url = h.url_for('resource.read', id=package_info['name'], resource_id=resource_id) %} {% set package_url = h.url_for('dataset.read', id=package_info['name']) %} {% endfor %}
{{ package_info['title'] }} / {{ resource_info['name'] }} {{ count }} {{ _('records') }}
{% endblock %}
{% endblock %} {% block secondary_content %}

{{ _('View data') }}

{{ _('Original') }}
{% trans %} View the data as it looked when the DOI was originally minted. {% endtrans %}
{{ _('Current') }}
{% trans %} View the data as it looks now. This may result in different results to the DOI's original data if the data has been modified since it was minted. {% endtrans %}
{% asset 'ckanext-query-dois/multisearch' %}

{{ _('Download') }}

{% trans %} Request to download the data associated with this DOI as it looked when the DOI was minted. {% endtrans %}

View this query on the search page for more advanced download options, including email notifications.
{% block privacy_warning %}{% endblock %}
{% endblock %}