{% ckan_extends %} {% set dataset_extent = h.get_pkg_dict_extra(c.pkg_dict, 'spatial', '') %} {% set d4science_cms_obj_placeholders = h.d4science_get_content_moderator_system_placeholder() %} {% set moderation_item_status = h.get_pkg_dict_extra(c.pkg_dict,d4science_cms_obj_placeholders.item_status,'') %} {% block primary_content_inner %} {% if moderation_item_status %} {{ moderation_item_status }} {% endif %} {% block package_description %} {% if pkg.private %} {{ _('Private') }} {% endif %}
{% block page_heading %} {{ pkg.title or pkg.name }} {% if pkg.state.startswith('draft') %} [{{ _('Draft') }}] {% endif %} {% if pkg.state == 'deleted' %} [{{ _('Deleted') }}] {% endif %} {% endblock %}
{% block package_notes %} {% if pkg.notes %}
{{ h.render_markdown(pkg.notes) }}
{% endif %} {% endblock %} {# FIXME why is this here? seems wrong #} {% endblock %} {% if dataset_extent %} {% snippet "spatial/snippets/dataset_map.html", extent=dataset_extent %} {% endif %} {% block package_tags %}
{{_('Tags')}}
{% snippet "package/snippets/tags.html", tags=pkg.tags %} {% endblock %} {% block package_resources %} {% snippet "package/snippets/resources_list.html", pkg=pkg, resources=pkg.resources %} {% endblock %} {% block package_additional_info %} {% snippet "package/snippets/additional_info.html", pkg_dict=pkg %} {% endblock %} {% endblock %}