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

Flows Dashboard

Track and manage workflow processes across the organization.

Create New Workflow
Total Flows

{{ stats.total_flows }}

In Progress

{{ stats.in_progress_flows }}

Stuck

{{ stats.stuck_flows }}

Completed

{{ stats.completed_flows }}

Filter Workflows
Coming soon
Clear Filters
All Workflows
{% if flows|length > 0 %}
{% for flow in flows %} {% endfor %}
Workflow Name Type Status Assignee Progress Initiated Last Updated Current Stage Actions
{{ flow.name }} {{ flow.flow_type }} {{ flow.status }} {{ flow.owner_name }}
{{ flow.progress_percentage }}%
{{ flow.created_at | date(format="%Y-%m-%d") }} {{ flow.updated_at | date(format="%Y-%m-%d") }} {% set current = flow.current_step %} {% if current %} {{ current.name }} {% else %} {% if flow.status == 'Completed' %} All stages completed {% elif flow.status == 'Cancelled' %} Workflow cancelled {% else %} No active stage {% endif %} {% endif %}
{% if flow.status == 'In Progress' %} {% endif %}
{% else %}

No workflows found matching your criteria.

Try adjusting your filters or create a new workflow.

{% endif %}
{% endblock %}