{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if operation == '4' %}

{% trans "Are you sure to terminate the request?" %}

{% elif operation == '3' %}

{% trans "Are you sure to deny the request?" %}

{% else %}

{% blocktrans with escaped_object=object %}Are you sure you want to submit the {{ object_name }} "{{ escaped_object }}"? {% endblocktrans %}

{% endif%}

{{ workflow_modal.code }} {{ workflow_modal.name }}

{% csrf_token %} {% if is_stop_node %}

{% trans "current node is stop node,click the submit button to complete it" %}

{% else %} {% for node_user in node_users %} {% if node_user.node == 'start'%}

{% trans "back to start node" %}

{%else%}

{% trans "next node" %}:{{ node_user.node.name }}

{% endif%} {% if next_node_description %}

{% trans "attention" %}:{{next_node_description}}

{% endif %} {% if node_has_users %} {% else %}

{% trans "No user was configured to handle this node"%}

{% endif %} {% endfor%} {% endif%} {% if is_stop_node or node_has_users%}
{% if is_popup %}{% endif %} {% if to_field %}{% endif %} {% trans "No, take me back" %}
{% else %} {% if is_popup %}{% endif %} {% if to_field %}{% endif %} {% trans "No, take me back" %} {% endif %}
{% endblock %}