{% extends 'viewflow/base_module.html' %} {% load i18n viewflow material_frontend viewflow_frontend %} {% block breadcrumbs_items %} {% include 'viewflow/includes/breadcrumb_category.html' %} {{ view.flow_class.process_title }} #{{ process.pk }} {% endblock %} {% block content %} {% block left-panel %}
{{ process.summary }}
{% for task in task_list %} {% endfor %}
{% trans '#' %} {% trans 'Description' %} {% trans 'Owner' %} {% trans 'Started' %} {% trans 'Finished' %} {% trans 'Status' %}
{% flowurl task user=request.user as task_url %} {% if task_url %} {{ task.process.id }}/{{ task.id }} {% else %} {{ task.process.id }}/{{ task.id }} {% endif %} {% if task_url %} {{ task.summary|default:task.flow_task }} {% else %} {{ task.summary|default:task.flow_task }} {% endif %} {{ task.owner|default:"" }} {{ task.created }} {{ task.finished|default:"" }} {{ task.get_status_display }}
{% if view.flow_class|manage_permission_name in perms %} {% trans 'Cancel' %} {% endif %}
{% endblock %} {% block right-panel %}
{% with hide_active_tasks=True %} {% include_process_data process %} {% endwith %}
{% endblock %} {% endblock %}