{% 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}}
{{dataset.description}}
{{dataset.details}}
{% if request.user.is_staff %}
{% endif %}
{{dataset.children.count}} Items
{% for item in dataset.children.all %}
-
{{item}}
{% endfor %}
{% if dataset.attributes.count %}
Attributes
Attribute |
Type |
Value |
{% if request.user.is_staff %}
Admin |
{% endif %}
{% for attribute in dataset.attributes.all %}
{{attribute.key}} |
{{attribute.type_str}} |
{{attribute.value_html}} |
{% if request.user.is_staff %}
|
{% endif %}
{% endfor %}
Total Filesize |
Filesize |
{{ dataset.descendant_total_filesize_readable }} |
{% if request.user.is_staff %}
|
{% endif %}
{% endif %}
{% item_map dataset %}
{% if request.user.is_staff %}
{% endif %}
Files
{{ dataset.files.render_html|safe }}
{% if dataset.statuses.count %}
History
Date |
User |
Stage |
Status |
{% if request.user.is_staff %}
Admin |
{% endif %}
{% for status in dataset.statuses.all %}
{{status.created}} |
{{status.site_user}} |
{{status.get_stage_display}} |
{{status.get_state_display}} |
{% if request.user.is_staff %}
|
{% endif %}
{% endfor %}
{% endif %}
{% endblock content %}