{% extends "base.html" %} {% block title %}{{ project.name }} - flanner{% endblock %} {% block content %}
Project Root
{{ project.project_root or 'Not set' }}
Plan Directory
{{ project.plan_directory }}
Auto .gitignore
{% if project.auto_gitignore %} Enabled {% else %} Disabled {% endif %}
Total Plan Files
{{ total }}

Plan Files

{% if plan_files %}
{% for plan_file in plan_files %}

{{ plan_file.name }}

v{{ plan_file.current_version }}
{% if plan_file.description %}

{{ plan_file.description }}

{% endif %}
{{ plan_file.versions|length if plan_file.versions else plan_file.current_version }} version(s) {% set lc = linear_counts.get(plan_file.id|string) %} {% if lc %} Linear ×{{ lc }} {% endif %} Updated {{ plan_file.updated_at|relative_time if plan_file.updated_at else 'never' }} Created {{ plan_file.created_at.strftime('%Y-%m-%d') if plan_file.created_at else 'unknown' }}
{% endfor %}
{% else %}
{% include "_empty_glyph.html" %}

No Plan Files Yet

Create your first plan file for this project.

Create Plan File
{% endif %}
{% if pages > 1 %} {% endif %}
{% endblock %}