{% extends "base.html" %} {% load crunch %} {% block content %}
{% if perms.crunch.add_dataset %} {% endif %} {% if perms.crunch.update_dataset %} {% endif %} {% if request.user.is_staff %} {% endif %} {% if dataset.prev_in_order %} {% endif %} {% if dataset.next_in_order %} {% endif %}

{{dataset}}

Project: {{dataset.parent}}

{{dataset.description}}

{{dataset.details}}


{% if request.user.is_staff %} {% endif %}

{{dataset.children.count}} Items

{% if dataset.attributes.count %}

Attributes

{% if request.user.is_staff %} {% endif %} {% for attribute in dataset.attributes.all %} {% if request.user.is_staff %} {% endif %} {% endfor %} {% if request.user.is_staff %} {% endif %}
Attribute Type ValueAdmin
{{attribute.key}} {{attribute.type_str}} {{attribute.value_html}}
Total Filesize Filesize {{ dataset.descendant_total_filesize_readable }}

{% endif %} {% item_map dataset %}
{% if request.user.is_staff %} {% endif %}

Files

{{ dataset.files.render_html|safe }}
{% if dataset.statuses.count %}

History

{% if request.user.is_staff %} {% endif %} {% for status in dataset.statuses.all %} {% if request.user.is_staff %} {% endif %} {% endfor %}
Date User Stage StatusAdmin
{{status.created}} {{status.site_user}} {{status.get_stage_display}} {{status.get_state_display}}
{% endif %}
{% endblock content %}