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

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

{% endblock %} {% block page %} {% if table.nrows %}

The table has {{ table.nrows }} rows, {{ table.columns.all | length }} columns.

{% endif %} {% if table.long_description %}

Description

{{ table.long_description | markdown }} {% elif table.description %}

Description

{{ table.description | markdown }} {% endif %} {% if table.attribution %}

Attribution

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

{% trans 'Columns' %}

{% for column in table.columns.all %} {% endfor %}
{% trans 'Name' %} {% trans 'Type' %} {% trans 'UCD' %} {% trans 'Unit' %} {% trans 'Description' %}
{{ column.name }} {{ column.datatype }} {{ column.ucd|default_if_none:''|semicolonbr }} {{ column.unit|default_if_none:'' }} {{ column.description | markdown }}
{% endblock %} {% block sidebar %} {% access_panel table _('table') %} {% if table.doi %} {% doi_panel table.doi _('table') %} {% endif %} {% if table.license %} {% license_panel table.license %} {% endif %} {% endblock %}