Active Flows
Create New Flow
{% if flows %}
{% for flow in flows %}
{{ flow.name }}
(UUID: {{ flow.flow_uuid }}) - Status: {{ flow.status }}
Created: {{ flow.base_data.created_at | date(format="%Y-%m-%d %H:%M:%S") }}
View Details
{% endfor %}
{% else %}
No active flows.
Create one?
{% endif %}