{% extends "base.html" %} {% block title %}SDD+ - {{ project.name }}{% endblock %} {% block content %}

{{ project.name }}

Current State

Phase {{ state.current_phase | default(0) }} {{ state.current_state | default("UNKNOWN") }}

Completed phases: {{ state.completed_phases | default([]) | join(", ") or "none" }}

{% if state.last_updated %}

Last updated: {{ state.last_updated[:19] }}

{% endif %}
{% if audits %}

Audit History

{% for a in audits %} {% endfor %}
Phase Verdict Coverage Findings Timestamp
{{ a.phase }} {{ a.verdict }} {{ a.coverage_percent | default(0) }}% {{ a.findings | default([]) | length }} {{ a.timestamp[:19] if a.timestamp else "-" }}
{% else %}

No audit history yet.

{% endif %} {% endblock %}