FSD Compliance Report
Project: {{ project }} —
Generated: {{ generated_at }} —
FSD v{{ fsd_version }}
{{ "ALL GATES PASSED" if overall_passed else "GATES FAILED" }}
Quality Gates
{% for gate in gates %}
Command: {{ gate.command }}
Duration: {{ "%.1f"|format(gate.duration_seconds) }}s
Exit: {{ gate.exit_code }}
{% for m in gate.iso_mappings %}
ISO {{ m.standard }}:{{ m.clause }}
{% endfor %}
{% if gate.stdout and not gate.passed %}
Output
{{ gate.stdout }}
{% endif %}
{% endfor %}
ISO Evidence Matrix
| Standard | Clause | Control | Gate | Status |
{% for row in iso_evidence %}
| ISO {{ row.standard }} |
{{ row.clause }} |
{{ row.control }} |
{{ row.gate_label }} |
{{ "EVIDENCED" if row.passed else "MISSING" }} |
{% endfor %}