{% extends "base.html" %} {% load threebot_tags %} {% load sekizai_tags %} {% block doctitle %} all Workflows {% endblock %} {% block content %}
Workflows are lists of Tasks that are performed in sequence. Select the Workflow you want to perform or edit.
{% if workflows %}Last performed on | Team | ||||
---|---|---|---|---|---|
{{ workflow.title }} | {{ workflow.number_of_tasks }} | {% get_last_worker_for request workflow as workers %}{% for worker in workers %}{{ worker.title|default:"---" }}, {% endfor %} | {{ workflow.owner }} | {% get_presets_for request workflow as presets %}{% if presets.all_presets_set and worker.is_accessible %} {% endif %} |
{% include 'threebot/workflow/_workflow_actions_menu.html' %}
|