{% extends "base.html" %} {% block title %}Annal - Projects{% endblock %} {% block content %}
{% if project_stats %}
{% for p in project_stats %}

{{ p.name }}

{{ p.total }}
{{ p.agent_memory }} agent
{{ p.file_indexed }} indexed
{% if p.top_tags %}
{% for tag, count in p.top_tags %} {{ tag }} {{ count }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}
>_

No projects configured yet.

Use the init_project MCP tool to add your first project.

{% endif %} {% endblock %}