{% extends 'core/page.html' %} {% load i18n %} {% load static %} {% load core_tags %} {% load metadata_tags %} {% block heading %}

{% if schema.title %} {{ schema.title }} ({{ schema }}) {% else %} {{ schema }} {% endif %}

{% endblock %} {% block page %} {% if schema.long_description %}

Description

{{ schema.long_description | markdown }}

{% elif schema.description %}

Description

{{ schema.description | markdown }}

{% endif %} {% if schema.attribution %}

Attribution

{{ schema.attribution | markdown }} {% endif %}

{% trans 'Tables' %}

{% for table in tables %}
  {% if table.title %} {{ table.title }} ({{ table }}) {% else %} {{ table.name }} {% endif %}
{% if table.description %} {{ table.description | markdown }} {% else %} {% trans 'No description has been provided for this table.' %} {% endif %}
{% if table.doi %} {% endif %}
{% endfor %} {% endblock %} {% block sidebar %} {% access_panel schema _('schema') %} {% if schema.doi %} {% doi_panel schema.doi _('schema') %} {% endif %} {% if schema.license %} {% license_panel schema.license %} {% endif %} {% endblock %}