{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block topbar_main %}

Dashboard

{% endblock %} {% block topbar_actions %} New project {% endblock %} {% block content %}
{{ total_projects }}
Projects
{{ total_plans }}
Plan files
{{ updated_this_week }}
Updated this week
{% if projects %}
Projects {{ projects | length }} shown all {{ total_projects }} projects
{% for project in projects %}
{{ project.name }} {% if project.description %}
{{ project.description }}
{% endif %}
{{ plan_counts.get(project.id, 0) }} plans {{ project.plan_directory }} {{ project.created_at.strftime('%d %b %Y') if project.created_at }}
{% endfor %}
{% else %}

Nothing here yet

Create a project and flanner takes over the plan files your agents write in it.

New project
{% endif %} {% if recent_activity %}
Recent Activity
{% for item in recent_activity %}
v{{ item.plan_file.current_version }} {{ item.plan_file.name }}.md in {{ item.project.name }} {{ item.updated_at | relative_time }}
{% endfor %}
{% endif %}
{% endblock %}