{% extends "base.html" %} {% block content %}

Manual gate {{ gate_record.gate.gate_id }}

Run: {{ gate_record.run_id }}

Task: {{ gate_record.task_id }}

Status: {{ gate_record.gate.status.value }}

Reason: {{ gate_record.gate.reason.value }}

Node dir: {{ gate_record.node_dir }}

{% if gate_record.human_request %}

Human request

Question

{{ gate_record.human_request.question }}

Assistant summary

{{ gate_record.human_request.assistant_summary }}

Assistant rationale

{{ gate_record.human_request.assistant_rationale }}
{% if gate_record.human_request.citations %}

Citations

{% endif %} {% if gate_record.human_request.context_artifacts %}

Artifacts

{% endif %}
{% endif %}

Human response

{% if gate_record.human_response %}
{{ gate_record.human_response.answer }}
{% else %}

No human response recorded yet.

{% endif %}

Resolve gate

{% if gate_record.human_response %}
{% else %}

Record a human response before approving or rejecting the gate.

{% endif %}
{% endblock %}