{% extends "base.html" %} {% block title %}{{ slug if pending else s.slug }} — Requivo{% endblock %} {% block content %}

← All sessions

{% if pending %}

{{ slug }}

Awaiting discovery

Request

{{ request_text }}

{% if context_cards %}

Context cards: {{ context_cards|join(', ') }}

{% endif %}
{% if provider.available %}
{% include "_csrf.html" %}
Calls the provider — a few seconds.
{% else %}
{{ provider.reason }}
{% endif %} {% else %}

{{ s.slug }}

revision {{ s.revision }}{% if s.context_cards %} · cards: {{ s.context_cards|join(', ') }}{% endif %} · export model

{% if s.summary.objective %}

{{ s.summary.objective }}

{% endif %} {% include "sessions/_status.html" %} {% if s.decisions or s.challenges or s.opportunities %}

Decisions & reasoning

{% for d in s.decisions %}
{{ d.decision }}
{% if d.why %}
Why
{{ d.why }}
{% endif %} {% if d.alternative %}
Alternative weighed
{{ d.alternative }}
{% endif %} {% if d.tradeoff %}
Trade-off
{{ d.tradeoff }}
{% endif %}
{% endfor %} {% if s.challenges %}

Challenges to the premise

{% endif %} {% for c in s.challenges %}
{{ c.headline }}
Premise
{{ c.premise }}
Alternative
{{ c.alternative }}
Consequence
{{ c.consequence }}
Recommendation
{{ c.recommendation }}
{% endfor %} {% if s.opportunities %}

Opportunities

{% endif %}
{% endif %}

Artifacts

{% include "artifacts/list.html" %}
{% endif %} {% endblock %}