{% extends 'viewflow/base_module.html' %} {% load material_frontend viewflow viewflow_frontend %} {% block breadcrumbs_items %} {% include 'viewflow/includes/breadcrumb_category.html' %} {{ flow_class.process_title }} #{{ process.pk }} Cancel {% endblock %} {% block content %}
{% csrf_token %}
{{ flow_class.process_title }}
{% if process.finished %}Finished{% else %}in-progresss{% endif %}
Cancel {{ flow_class.process_title }} #{{ process.pk }} and {{ active_tasks|length }} tasks
{{ process.summary }}
{% for task in active_tasks %} {% endfor %}
# Name Description Started Status  
{% flowurl task user=request.user as task_url %} {% if task_url %} {{ task.process.id }}/{{ task.id }} {% else %} {{ task.process.id }}/{{ task.id }} {% endif %} {{ task.flow_task }} {{ task.summary }} {{ task.created }} {{ task.status }} {% if task in uncancelable_tasks %} UNCANCELABLE {% endif %}
{% with hide_active_tasks=True %} {% include_process_data process %} {% endwith %}
{% endblock %}