{% extends "base.html" %} {% set active_page = 'home' %} {% block title %}agentplan mission control{% endblock %} {% block body_class %}dashboard-home{% endblock %} {% block content %}
Active Projects
{{ summary.active_projects }}
Tickets In Flight
{{ summary.tickets_in_flight }}
Completed Today
{{ summary.completed_today }}
Active Agents
{{ summary.active_agents }}
{% if projects %}

Active Projects

{% for project in active_projects %}

{{ project.title }}

{{ project.slug }}
{{ project.done_count }}/{{ project.ticket_count }} done
{% for status in ["pending", "in-progress", "blocked", "needs-review", "failed", "done"] %} {{ project.breakdown.get(status, 0) }} {% endfor %}
Last activity: {{ project.updated_at or "n/a" }}
{% if project.missing_directory %}
⚠ Missing directory
{% endif %}
{% endfor %}

Completed

{% for project in completed_projects %}

{{ project.title }}

{{ project.slug }}
{{ project.done_count }}/{{ project.ticket_count }} done
Last activity: {{ project.updated_at or "n/a" }}
{% if project.missing_directory %}
⚠ Missing directory
{% endif %}
{% endfor %}
{% else %}
No projects found.
{% endif %} {% endblock %} {% block scripts %} {% endblock %}