{% extends 'viewflow/base_site.html' %} {% load viewflow viewform %} {% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %} {% block content %} {% if flow_cls.process_title %} {% endif %} {% if flow_cls.process_description %} {{ flow_cls.process_description|restructuredtext }} {% endif %} {% if start_actions %} {% for action_url, action_name in start_actions %} {{ action_name|title }} {% endfor %} {% endif %} {% for process in process_list %} {% empty %} {% endfor %}
# Started Finished Active Tasks
{{ process.id }} {{ process.created }} {{ process.finished|default:"" }} {% for task in process.active_tasks %} {% with task.get_absolute_url as task_url %} {% if task_url %} {{ task.flow_task }} {% else %} {{ task.flow_task }} {% endif %} {% endwith %} {% endfor %}
No process yet
{% pagination page_obj %} {% endblock %}