{% extends "scidatacontainer_db/base.html" %} {% block content %} {% include "scidatacontainer_db/invalidation_modal.html" with uuid=dataset.id %}

Dataset: {{ dataset.title }}

Download {% if dataset.owner == request.user %} Manage permissions {% endif %}
{% if dataset.replaces.all %} {% endif %} {% with ur=dataset.list_read_perm_users gr=dataset.list_read_perm_groups uw=dataset.list_write_perm_users gw=dataset.list_write_perm_groups %} {% endwith %} {% if dataset.timestamp %} {% endif %} {% if dataset.doi %} {% endif %} {% if dataset.organization %} {% endif %} {% if dataset.comment %} {% endif %} {% if dataset.description %} {% endif %} {% if dataset.license %} {% endif %} {% if dataset.hash %} {% endif %} {% for file in dataset.content.all %} {% if file.content %} {% endif %} {% endfor %}
UUID {{ dataset.id }}
Size {{ dataset.size|filesizeformat }}
Uploaded: {{ dataset.upload_time }}
Replaces: {% for d in dataset.replaces.all %}{{ d.id }}{% endfor %}
Complete: {% if dataset.complete %}☑{% else %}☐{% endif %}
Owner: {{ dataset.owner }}
User Permissions: {% for user in ur%} {{ user.username }} (r)
{% endfor %} {% for user in uw%} {{ user.username }} (w)
{% endfor %}
Group Permissions: {% for group in gr%} {{ group }} (r)
{% endfor %} {% for group in gw%} {{ group }} (w)
{% endfor %}
meta.json
Title {{ dataset.title }}
Content Timestamp {{ dataset.timestamp }}
DOI {{ dataset.doi }}
Author {{ dataset.author }}
Organization {{ dataset.organization }}
Email {{ dataset.email }}
Comment {{ dataset.comment }}
Description {{ dataset.description }}
License {{ dataset.License }}
content.json
Container Created {{ dataset.created }}
Container storage time {{ dataset.storage_time }}
Static {% if dataset.static %}☑{% else %}☐{% endif %}
Model Version {{ dataset.model_version }}
Container Type {% if container_type.version %} {% endif %} {% if container_type.id %} {% endif %}
Name: {{ dataset.container_type.name }}
Version: {{ dataset.container_type.version }}
ID: {{ dataset.container_type.id }}
Hash {{ dataset.hash }}
Other files
{{ file.name }}
Size: {{ file.size|filesizeformat }}
Content:
{{ file.content|pprint }}
{% endblock %}