{% extends "web/_base.html" %} {% load debusine %} {% block title %}Workspace {{ workspace.name }}{% endblock %} {% block content %}

{{ workspace.name }} workspace

Details

Public {{ workspace.public|yesno:"yes,no" }}
Default expiration delay (days) {{ workspace.default_expiration_delay.days|default:"Never" }}

Workflow templates

{% if workflow_templates %} {% for t in workflow_templates %}
{{ t.name }} (type {{ t.task_name }}, priority {{ t.priority }})
{{ t.task_data|format_yaml }}
{% endfor %} {% else %} No workflow templates configured for this workspace. {% endif %}
{% if collection_stats %}

Collections

{% for s in collection_stats %} {% endfor %}
Category Count
{{ s.category }} {{ s.count }}
All collections {{ collection_count }}
{% endif %} {% endblock %}