{% extends 'viewflow/base.html' %} {% load viewflow %} {% block title %}{{ block.super}} | All tasks{% endblock %} {% block content %}

All tasks list

{% for task in task_list %} {% endfor %}
# Process Task Description Summary Assigned
{{ task.process.id }}/{{ task.id }} {{ task.flow_task.flow_cls.process_title }} {{ task.flow_task }} {{ task.summary }} {{ task.flow_process.summary }} {{ task.created }}
{% endblock %}