{% extends "base.html" %} {% block title %}Innovation Pipeline โ€” FORGE IGNITE{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
FORGE IGNITE

AI Innovation Pipeline

Capture ideas, assess feasibility, run pilots, measure impact.

{{ 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 }}
This Month
{{ stats.avg_score }}
Avg Score
๐Ÿ“Š Dashboard + Submit Idea
Filter: All {% for stage in stages %} {{ stage.label }} {% endfor %} | ๐ŸŸข Phase 1 ๐ŸŸก Phase 2 ๐Ÿ”ด Phase 3 โšช Deferred
{% for stage in stages %} {% set lane_ideas = ideas | selectattr('status','equalto', stage.id) | list %}
{{ stage.label }} {{ lane_ideas | length }}
{% if lane_ideas %} {% for idea in lane_ideas %}
{{ idea.title | truncate(60) }}
{% if idea.submitter_name %}{{ idea.submitter_name }}{% endif %} {% if idea.department %} ยท {{ idea.department }}{% endif %}
{% if idea.submitter_role %}
{{ idea.submitter_role }}
{% endif %}
{% endfor %} {% else %}
No ideas here yet
{% endif %}
{% endfor %}
{% endblock %}