{% extends 'viewflow/base_module.html' %} {% load 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 %}
{{ view.flow_class.process_title }}
{% if process.finished %}Finished{% else %}in-progresss{% endif %}
{{ process.summary }}
{% for task in task_list %} {% endfor %}
# Description Owner Started Finished 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.status }}
{% if view.flow_class.manage_permission_name in perms %} Cancel {% endif %}
{% endblock %} {% block right-panel %}
{% with hide_active_tasks=True %} {% include_process_data process %} {% endwith %}
{% endblock %} {% endblock %}