{% extends "web/_base.html" %}
{% block navbar_left %}
{{ block.super }}
{% include "web/_collection-menu.html" with collection=collection only %}
{% endblock %}
{% block title %}Collection {{ collection.name }}{% endblock %}
{% block content %}
{{ collection.name }} {{ collection.category }} collection
Details
| Full history retention period (days) |
{{ collection.full_history_retention_period.days|default:"Always" }} |
| Metadata only retention period (days) |
{{ collection.full_history_retention_period.days|default:"Always" }} |
| Retains artifacts |
{{ collection.retains_artifacts }} |
| Workspace |
{{ collection.workspace.name }}
|
{% if collection.workflow %}
| Workflow |
{{ collection.workflow }}
|
{% endif %}
{% if data_yaml %}
| Data |
{{data_yaml}}
|
{% endif %}
Contents
{% if not collections and not artifacts %}
The collection is empty
{% else %}
Search collection
{% endif %}
{% if collections %}
Collections
| Category |
Count |
{% for a in collections %}
| {{ a.category }} |
{{ a.count }} |
{% endfor %}
{% endif %}
{% if artifacts %}
Artifacts
| Category |
Count |
{% for a in artifacts %}
| {{ a.category }} |
{{ a.count }} |
{% endfor %}
{% endif %}
{% endblock %}