{% extends "base.html" %} {% block title %}{{ project.name }}{% endblock %} {% block topbar_back %} {% endblock %} {% block topbar_main %} {% endblock %} {% block topbar_actions %}
New plan {% endblock %} {% block content %}
{{ project.name }}
{% if project.description %}
{{ project.description }}
{% endif %}
Plans
{{ total }}
Plan directory
{{ project.plan_directory }}
{% if project.project_root %}
Project root:{{ project.project_root }} {% if project.auto_gitignore %}.gitignore managed ✓{% endif %}
{% endif %}
{% if plan_files %}
Plans {{ total }}
PlanVersionLinksAuthorUpdated
{% for plan_file in plan_files %}
{{ plan_file.name }}.md v{{ plan_file.current_version }} {% set lc = linear_counts.get(plan_file.id|string) %} {% if lc %}Linear ×{{ lc }}{% else %} {% endif %} {{ plan_file.created_by or 'user' }} {{ plan_file.updated_at | relative_time }}
{% endfor %}
{% else %}

No plans in this project

Your agents will fill this in, or you can write the first one yourself.

New plan
{% endif %} {% if pages and pages > 1 %}
{% if page > 1 %} Previous{% endif %} page {{ page }} / {{ pages }} ({{ total }} total) {% if page < pages %} Next{% endif %}
{% endif %}
{% endblock %}