{% extends "base.html" %} {% block title %}Dashboard - Agent Kanban PM{% endblock %} {% block content %}

Dashboard

See what needs a decision and find your work.

Needs attention

Approvals, failed runs, and tasks ready for review.

{% if attention %} {% else %}

Nothing needs a decision right now. Open projects

{% endif %}
{{ stats.total_projects }}
Total Projects
{{ stats.total_tasks }}
Total Tasks
{{ stats.completed_tasks }}
Completed
{{ stats.total_entities }}
Assigned Roles

Recent Projects

View all projects
{% for project in recent_projects %} {% endfor %}
Project Status Tasks Created
{{ project.name }}
{{ (project.description or '')[:80] }}{% if project.description and project.description|length > 80 %}...{% endif %}
{{ project.approval_status.value|capitalize }} {{ project.task_count }} tasks {{ project.created_at.strftime('%Y-%m-%d') }}

Recent Tasks

{% for task in recent_tasks %}
{{ task.title }}
{{ task.status | status_label }} Priority {{ task.priority }}

{{ (task.description or '')[:120] }}{% if task.description and task.description|length > 120 %}...{% endif %}

{% endfor %}
{% endblock %}