{% include 'components/dataset_header.html' %}
Details (expand)
{% for key, value in meta_data.items() %}
{% if key not in ['dataset_doi', 'name', 'authors'] %}
{% if value %}
{% if not (key == 'license' and 'CC0' in value) %}
{% if not (key == 'license' and 'PDDL' in value) %}
{{ key.replace('_',' ')|capitalize }}
{% if value is string %}
{{ value }}
{% elif value is mapping %}
{% for k,v in value.items() %}
{{ k }}) {{ v }}
{% endfor %}
{% elif value is iterable %}
{% for v in value %}