{% extends "base.html" %} {% block title %}Innovation Dashboard — FORGE IGNITE{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
FORGE IGNITE

Innovation Dashboard

AI innovation pipeline health, team readiness, and portfolio status for leadership.

{{ stats.total }}
Total Ideas
{{ stats.stage_counts.get('pilot',0) + stats.stage_counts.get('measure',0) }}
Active Pilots
{{ stats.stage_counts.get('scale',0) }}
Scaled
{{ stats.submitted_this_month }}
Ideas This Month
{{ stats.avg_score }}
Avg Score
{{ readiness.score }}
AI Readiness
Pipeline Funnel
{% set max_count = funnel_data | map(attribute='count') | max | default(1) %}
{% for item in funnel_data %}
{{ item.stage }}
{{ item.count }}
{% endfor %}
Portfolio by Modernization Phase
{% set max_phase = phase_data | map(attribute='value') | max | default(1) %}
{% for item in phase_data %}
{{ item.label }}
{{ item.value }}
{% endfor %}

⚠ If Phase 3 (Transformation) dominates, your team may be reaching before the foundation is ready.

Org AI Readiness Score Full View →
{{ readiness.score }}/100
{{ readiness.guidance }}
{% for comp_key, comp in readiness.components.items() %}
{{ comp.label }} {{ comp.value }}%
{% endfor %}
{% if readiness.cohort.total_users %}
{{ readiness.cohort.total_users }}Total Learners
{{ readiness.cohort.l1 }}L1 Aware
{{ readiness.cohort.l2 }}L2 Capable
{{ readiness.cohort.l3 }}L3 Proficient
{{ readiness.cohort.l4 }}L4 Expert
{{ readiness.cohort.l5 }}L5 Architect
{% endif %} {% if readiness.skill_gaps %}
Skills with <30% unlock (top gaps)
    {% for gap in readiness.skill_gaps %}
  • {{ gap.skill }} {{ gap.unlock_pct }}% unlocked
  • {% endfor %}
{% endif %}
{% if stats.top_ideas %}

Top Scored Ideas in Queue

View All →
{% for idea in stats.top_ideas %} {% set phase_colors = {'phase1':'#00FF88','phase2':'#FFB800','phase3':'#FF4444','deferred':'#888'} %} {% set phase_emojis = {'phase1':'🟢','phase2':'🟡','phase3':'🔴','deferred':'⚪'} %} {% endfor %}
IdeaPhaseScoreStatusRole
{{ idea.title | truncate(55) }} {{ phase_emojis.get(idea.phase_tag,'') }} {{ (idea.phase_tag or '').replace('_',' ').title() }} {{ idea.score_total | round(0) | int }} {{ idea.status }} {{ idea.submitter_role or '—' }}
{% endif %} {% if top_depts %}

Most Active Departments

{% set max_dept = top_depts | map(attribute=1) | max | default(1) %} {% for dept, count in top_depts %}
{{ dept | truncate(12) }}
{{ count }}
{% endfor %}
{% endif %}
CUI // SP-CTI — FORGE IGNITE Innovation Dashboard — {{ readiness.score }}/100 Org AI Readiness
{% endblock %}