{% extends "base.html" %} {# CUI // SP-CTI #} {% block title %}{{ app_name }} — Executive View{% endblock %} {% block content %}
{{ hours_saved }}
Hours Saved by AI Automation
${{ "{:,.0f}".format(cost_avoided) }}
Cost Avoided
{{ total_tasks_automated }}
Tasks Automated
{{ agents_active }}/5
Agents Active
{{ maturity_score }}/100
Maturity Score

AI Maturity Trend

{{ maturity_level }}
{% for p in maturity_trend %}
{{ p.month }}
{{ p.score }}
{% endfor %}

Agent Activity Digest

{% for a in agent_activity %} {% endfor %}
AgentTasksStatus
{{ a.agent }} {{ a.tasks_completed }} {% if a.status == 'active' %} Active {% else %} Idle {% endif %}

Cost Breakdown by Automation Type

{% for item in cost_breakdown %}
{{ item.category }} {{ item.hours }}h — {{ item.pct }}%
{% endfor %}

Recent Automation Events

{% for e in roi_events %} {% endfor %}
TypeDescriptionTime SavedTriggered By
{{ e.action_type|replace('_',' ')|title }} {{ e.description }} {{ e.time_saved_minutes }}m {{ e.triggered_by }}
{% endblock %} {% block styles %} {% endblock %}