{# The swappable session body. The answers form replaces this whole region rather than the questions alone, because one answer moves everything below it: the understanding, what is still open, whether the scope is ready, and which documents now need updating. Swapping a part would leave the rest of the page quietly describing the previous revision. #}
{% if update is defined and update %}

What changed

{{ update.headline }}

{% if update.changed_areas %}
    {% for a in update.changed_areas %}
  • {{ a }}
  • {% endfor %}
{% endif %} {% if update.needs_review %}

Needs review

    {% for d in update.decisions_to_review %}
  • {{ d }} — decision
  • {% endfor %} {% for c in update.assumptions_to_review %}
  • {{ c }} — assumption
  • {% endfor %} {% for doc in update.documents_to_update %}
  • {{ doc }} — document
  • {% endfor %}
{% endif %}
{% endif %}

What Requivo understood

{% if s.understood.has_content %} {% if s.understood.objective %}

{{ s.understood.objective }}

{% endif %} {% if s.understood.scope %}

{{ s.understood.scope }}

{% endif %} {% if s.understood.assumptions %}

What we are assuming

{% endif %} {% if s.understood.blind_spot %}

Least explored: {{ s.understood.blind_spot }}

{% endif %} {% else %}

Nothing captured yet.

{% endif %}
{% include "discovery/_questions.html" %}

Are we ready?

{% if s.readiness.ready %}Ready {% else %}Not ready{% endif %} {{ s.readiness.headline }}

{{ s.readiness.lead }}

{% if s.readiness.blocking_labels %} {% endif %}

Documents

{% include "artifacts/list.html" %} {% include "sessions/_traceability.html" %}