{% extends "web/_base.html" %} {% load debusine %} {% block content %} {% ui workspace as ws %}

Details

{% if parents %} {% endif %}
Public {{ workspace.public|yesno:"Yes,No" }}
Expires {% if workspace.expiration_delay %} {{ workspace.expire_at|date:"Y-m-d" }} {% else %} Never {% endif %}
Default expiration delay {% help "expiration_delay" %} (days) {{ workspace.default_expiration_delay.days|default:"Never" }}
Inherits from {% spaceless %} {# Try hard not to have djlint insert unwanted spaces #} {% for w in parents %} {{ w }} {% if not forloop.last %}, {% endif %} {% endfor %} {% endspaceless %}
{% if ws.can_configure or ws.can_create_collections %}
{% if ws.can_configure %} {{ ws.place_update.as_button }} {{ ws.place_update_inheritance.as_button }} {% endif %} {% if ws.can_create_collections %}{{ ws.place_collection_create.as_button }}{% endif %}
{% endif %}

Workflow templates

{% if workflow_templates %} {% for t in workflow_templates %} {% ui t as t_ui %} {% endfor %}
Name Task name R I C
{{ t.name }} {{ t.task_name }} {{ t.running_workflows }} {{ t.needs_input_workflows }} {{ t.completed_workflows }}
{% 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 %}