{% from '_partials/badge.html' import badge %} {% if decisions %}
{% for d in decisions %} {% endfor %}
ID Type Decision Directives Task Date
{{ d.id }} {{ badge('arch' if d.type == 'architectural' else 'ops') }} {{ d.decision }} {{ d.directives_served }} {% if d.task %}{{ d.task }}{% endif %} {{ d.date }}
{% if rationale_map %}
Decision Rationale Details {% for d in decisions %} {% if d.rationale %}
{{ d.id }} — {{ d.decision }}

{{ d.rationale }}

{% if d.alternatives %}

Rejected: {{ d.alternatives | join(', ') }}

{% endif %}
{% endif %} {% endfor %}
{% endif %} {% else %}

No Decisions Found

No decisions were found in .context/project/decisions.yaml or 005-DesignDirectives.md.

{% endif %}