{% extends 'viewflow/base.html' %} {% load viewflow %} {% block title %}{{ block.super}} | {{ flow_cls.process_title }}{% endblock %} {% block content %} {% if flow_cls.process_title %}
# | Name | Started | Finished | Process | Status | {% for task in task_list %}
---|---|---|---|---|---|
{% 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.created }} | {{ task.finished|default:"" }} | {{ task.process }} | {{ task.get_status_display }} |