{% extends "base.html" %} {% block title %}Specs{% endblock %} {% block actions %} {% endblock %} {% block content %} {% if specs_root %}

Reading from {{ specs_root }}

{% endif %} {% if specs %}
{% for s in specs %} {% 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 %}
{% else %}

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

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