{{ t.id }}
— {{ t.name }}
{% set dec = t._decision | lower %}
{% if dec == 'go' %}
GO
{% elif dec in ('no-go', 'no_go') %}
NO-GO
{% elif dec == 'defer' %}
DEFER
{% else %}
PENDING
{% endif %}
{% if t._location == 'active' %}
ACTIVE
{% endif %}
{{ t.description[:200] }}{% if t.description|length > 200 %}...{% endif %}
{% endif %} {% if t._recommendation %}
Recommendation:
{% if t._rec_type %}
{{ t._rec_type }}
{% endif %}
{% if t._has_artifact %}
Research artifact
{% endif %}
{{ t._recommendation[:200] }}{% if t._recommendation|length > 200 %}...{% endif %}
Assumptions: {{ t._assumption_validated }} validated, {{ t._assumption_untested }} untested, {{ t._assumption_invalidated }} invalidated
{% endif %}