{% extends "web/_base.html" %}
{% load debusine %}
{% block content %}
{{ title }}
Details
| 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" }} |
{% if parents %}
| Inherits from |
{% spaceless %}
{# Try hard not to have djlint insert unwanted spaces #}
{% for w in parents %}
{{ w }}
{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endspaceless %}
|
{% endif %}
{% if workspace|has_perm:"can_create_artifacts" %}
|
Configure
|
{% endif %}
Workflow templates
{% if workflow_templates %}
{% else %}
No workflow templates configured for this workspace.
{% endif %}
{% if collection_stats %}
Collections
{% endif %}
{% endblock %}