{% extends "base.html" %} {% block title %}My Flows{% endblock %} {% block content %}
Flow Name | Type | Status | Progress | Current Step | Created | Updated | Actions |
---|---|---|---|---|---|---|---|
{{ flow.name }} | {{ flow.flow_type }} | {{ flow.status }} |
|
{% 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") }} |
Create a new flow to get started with tracking your processes.
Create New Flow