{% extends "base.html" %} {% block title %}{{ did }}{% endblock %} {% block content %}

{{ did }}

Datasets

{% if entries %}
{% for entry in entries %}

{{ entry.name }}

{% if entry.description %}

{{ entry.description }}

{% endif %} {% if entry.tags %}
{% for tag in entry.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No datasets published.

{% endif %}

Schemas

{% if schemas %} {% for s in schemas %} {% endfor %}
NameVersionType
{{ s.name }} {{ s.version }} {{ s.schemaType }}
{% else %}

No schemas published.

{% endif %}
{% endblock %}