{% extends "base.html" %} {% set active_page = 'home' %} {% block title %}agentplan dashboard{% endblock %} {% block body_class %}dashboard-home spaces-view{% endblock %} {% macro project_card(project) -%}

{{ project.title }}

{{ project.slug }}
{{ project.status_label }}
{% if project.ticket_count %}{{ project.done_count }}/{{ project.ticket_count }} done{% else %}0 tickets{% endif %}
Last activity: {{ project.updated_at or "n/a" }}
{% if project.missing_directory %}
⚠ Missing directory
{% endif %}
{%- endmacro %} {% block content %}

Projects

Track active work, spin up new projects, and manage lifecycle actions from one place.

Active Projects
{{ summary.active_projects }}
Tickets In Flight
{{ summary.tickets_in_flight }}
Completed Today
{{ summary.completed_today }}

Create project

Add a new AgentPlan project linked to an optional working directory.

{% if home_spaces %} {% for space in home_spaces %} {% set space_open = home_spaces|length == 1 or space.slug != "default" %}
{{ space.projects|length }}
{% if space.projects %} {% for project in space.projects %} {{ project_card(project) }} {% endfor %} {% else %}
No projects in this space yet.
{% endif %}
{% endfor %} {% endif %}
No projects found.
{% endblock %} {% block scripts %} {% endblock %}