{% extends "base.html" %} {% block title %}My Flows{% endblock %} {% block content %}

My Flows

{% if flows|length > 0 %}
{% for flow in flows %} {% endfor %}
Flow Name Type Status Progress Current Step Created Updated Actions
{{ flow.name }} {{ flow.flow_type }} {{ flow.status }}
{{ flow.progress_percentage }}%
{% set current = flow.current_step %} {% if current %} {{ current.name }} {% else %} {% if flow.status == 'Completed' %} All steps completed {% elif flow.status == 'Cancelled' %} Flow cancelled {% else %} No active step {% endif %} {% endif %} {{ flow.created_at | date(format="%Y-%m-%d") }} {{ flow.updated_at | date(format="%Y-%m-%d") }}
{% if flow.status == 'In Progress' %} {% endif %}
{% else %}

You don't have any flows yet

Create a new flow to get started with tracking your processes.

Create New Flow
{% endif %}
{% endblock %}