{% 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 %}Name | Last performed on | Team | ||
---|---|---|---|---|
{{ workflow.title }} | {% get_last_worker_for request workflow as worker %}{{ worker.title|default:"---" }} | {{ 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' %}
|