Plan Files
{% if plan_files %}
{% for plan_file in plan_files %}
{% 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 %}
No plans match that filter.
{% else %}
{% include "_empty_glyph.html" %}
No Plan Files Yet
Create your first plan file for this project.
Create Plan File
{% endif %}