{% extends "wcs/backoffice.html" %} {% load i18n %} {% block appbar-title %}{{ status.name }}{% endblock %} {% block appbar-actions %}
{% if not workflow.is_readonly %} {% trans "Options" %} {% trans "Change Name" %} {% endif %} {% endblock %} {% block content %} {{ block.super }} {% with visibility_mode=status.get_visibility_mode %} {% if visibility_mode != 'all' %}{% trans "Use drag and drop with the handles to reorder actions." %}
{% with item.get_target_status_url as url %} {% if url %}{% trans "Go to Target" %}{% endif %} {% endwith %} {% if not workflow.is_readonly %} {% trans "Edit" %} {% trans "Copy" %} {% trans "Delete" %} {% endif %}
{% trans "This status is reachable from the following status:" %} {% for source in source_statuses %} {{ source.name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% trans "Back to workflow main page" %}
{% blocktrans trimmed %} This is the default workflow, you cannot edit it but you can duplicate it to base your own workflow on it. {% endblocktrans %}
{% elif workflow.is_readonly %}{% trans "This workflow is readonly." %}
{% if status.forced_endpoint %}
{% trans "This status has been manually set to be considered as terminal." %}
{% trans "Unforce Terminal Status" %}
{% elif status.is_endpoint %}
{% trans "This status has been automatically evaluated as being terminal." %}
{% endif %}