{% extends "base.html" %} {% block title %}Specs{% endblock %} {% block actions %} {% endblock %} {% block content %} {% if roots_count and roots_count > 0 %}

Reading from {{ roots_count }} root{{ 's' if roots_count != 1 else '' }}

{% endif %} {% if specs %} {% for project, group in specs|groupby('project') %}
{{ project }} ({{ group|length }})
{% for s in group %} {% endfor %}
Feature Phase Status Files
{% if s.phase %} {{ s.feature }} {% else %} {{ s.feature }} {% endif %} {% if s.phase_label %}{{ s.phase_label }} {% else %}{% endif %} {% if s.status %} {% set st = s.status|lower %} {% if st in ('approved','complete','completed','done') %} {{ s.status }} {% elif st in ('in-review','in_review','review') %} {{ s.status }} {% elif st == 'draft' %} {{ s.status }} {% else %} {{ s.status }} {% endif %} {% else %}{% endif %} {% for f in s.files %} {{ f }} {% endfor %} {% if s.phase == 'requirements.md' %} {% elif s.phase == 'design.md' %} {% endif %}
{% endfor %} {% else %}

No specs found. Click + New spec to start one.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}