{% extends "admin/base_site.html" %} {% block content %}

Workflow analytics

Read-only aggregate metrics derived from executions, approvals and the audit trail. This page never writes to the database.

{% if rows %} {% for row in rows %} {% endfor %}
Workflow Started Active Completed Rejected Cancelled Failed Escalated SLA breached Avg completion (s)
{{ row.workflow }} {{ row.started }} {{ row.active }} {{ row.completed }} {{ row.rejected }} {{ row.cancelled }} {{ row.failed }} {{ row.escalated }} {{ row.sla_breached }} {{ row.average_completion_seconds|default_if_none:"—" }}
{% else %}

No workflow executions have been recorded yet.

{% endif %} {% endblock %}