{% extends "base.html" %} {% block title %}Flows Dashboard{% endblock %} {% block content %}
Track and manage workflow processes across the organization.
{{ stats.total_flows }}
{{ stats.in_progress_flows }}
{{ stats.stuck_flows }}
{{ stats.completed_flows }}
Workflow Name | Type | Status | Assignee | Progress | Initiated | Last Updated | Current Stage | Actions |
---|---|---|---|---|---|---|---|---|
{{ flow.name }} | {{ flow.flow_type }} | {{ flow.status }} | {{ flow.owner_name }} |
|
{{ 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 %} |
No workflows found matching your criteria.
Try adjusting your filters or create a new workflow.