{% extends 'viewflow/base.html' %} {% load viewflow %} {% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %} {% block content %} {% if flow_cls.process_title %}
{{ flow_cls.process_description }}
{% endif %} {% if start_actions %} {% for action_url, action_name in start_actions %} {{ action_name|title }} {% endfor %} {% endif %}# | Started | Finished | Active Tasks | {% for process in process_list %}
---|---|---|---|
{{ process.id }} | {{ process.created }} | {{ process.finished|default:"" }} | {% for task in process.active_tasks %} {% flowurl task user=request.user as task_url %} {% if task_url %} {{ task.flow_task }} {% else %} {{ task.flow_task }} {% endif %} {% endfor %} |
No process yet |