{% extends 'viewflow/base_site.html' %} {% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %} {% block content %} {% if flow_cls.process_title %} {% endif %} {% if has_start_permission %} Start New {% 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 %} {{ task.flow_task.name }} {% endfor %}
No process yet
{% endblock %}