{% extends "base.html" %} {% block title %}Dashboard Home - ICDEV™{% endblock %} {% block content %}
New here? Answer 3 questions and get a personalized workflow recommendation.
Get Started →
{{ total_projects }}
Total Projects
{{ active_agents }}
Active Agents ({{ inactive_agents }} idle)
{{ firing_alerts }}
Firing Alerts
{{ open_poam }}
Open POA&M
{% set columns = [ ("planning", "Planning"), ("active", "Active"), ("completed", "Completed"), ("inactive", "Inactive") ] %} {% for status_key, status_label in columns %}

{{ status_label }}

{{ kanban_columns[status_key] | length }}
{% endfor %}
Compliance Posture ?
Alert Trend (7 days)
Project Status
Agent Health

Recent Alerts

View All
{% for alert in recent_alerts %} {% else %} {% endfor %}
Severity Title Source Status Created
{{ alert.severity }} {{ alert.title }} {{ alert.source }} {{ alert.status }} {{ alert.created_at | friendly_time }}
No recent alerts — all clear

Recent Activity

{% for entry in recent_audit %} {% else %} {% endfor %}
Event Type Actor Action Project When
{{ entry.event_type }} {{ entry.actor }} {{ entry.action }} {% if entry.project_id %} {{ entry.project_id[:12] }} {% else %} {% endif %} {{ entry.created_at | friendly_time }}
No activity recorded yet
{% endblock %} {% block scripts %} {% endblock %}