{# Overridden from https://github.com/ckan/ckan/blob/ckan-2.11.2/ckan/templates/package/snippets/additional_info.html Customization: - Use fields that are meaningful to harvest sources #} {% set pkg_count = h.package_count_for_source(pkg_dict.id) %}

{{ _('Harvest Source') }}

{% block package_additional_info %} {% if pkg_dict.url %} {% if h.is_url(pkg_dict.url) %} {% else %} {% endif %} {% endif %} {% if pkg_dict.metadata_created %} {% endif %} {% if pkg_dict.metadata_modified %} {% endif %} {% endblock %} {% if pkg_count < pkg_dict.status.total_datasets %} {% endif %}
{{ _('Field') }} {{ _('Value') }}
{{ _('Name') }} {{ pkg_dict.name }}
{{ _('ID') }} {{ pkg_dict.id }}
{{ _('Source URL') }} {{ pkg_dict.url }} {{ pkg_dict.url }}
{{ _("Created") }} {% snippet 'snippets/local_friendly_datetime.html', datetime_obj=pkg_dict.metadata_created %}
{{ _("Last Updated") }} {% snippet 'snippets/local_friendly_datetime.html', datetime_obj=pkg_dict.metadata_modified %}
{{ _('Harvesting Frequency') }} {{ pkg_dict.frequency }}
{{ _('Source Type') }} {{ pkg_dict.source_type }}
{{ _('Total Jobs') }} {{ pkg_dict.status.job_count }}
{{ _('Total Datasets') }} {{ pkg_count }} {% if pkg_count < pkg_dict.status.total_datasets %} ({{ pkg_dict.status.total_datasets }} *) {% endif %}
* {{ _('The number in parentheses is the total count includes datasets in collections.') }} (What is a collection?)