{% extends "base.html" %} {% block title %}Session {{ session.id[:12] if session else 'Not Found' }} — AtlasBridge{% endblock %} {% block content %} {% if not session %}

Session not found

The requested session does not exist in the database.

← Back to home

{% else %}

Session {{ session.id[:12] }}…

ID{{ session.id }}
Tool{{ session.tool }}
Command{{ session.command }}
CWD{{ session.cwd }}
Status{{ session.status }}
Started{{ session.started_at|timeago }}
Ended{% if session.ended_at %}{{ session.ended_at|timeago }}{% else %}—{% endif %}
Exit Code{{ session.exit_code if session.exit_code is not none else '—' }}
Label{{ session.label or '—' }}

Prompts ({{ prompts|length }})

{% if prompts %}
{% for p in prompts %} {% endfor %}
ID Type Confidence Status Created Excerpt
{{ p.id[:12] }}… {{ p.prompt_type }} {{ p.confidence }} {{ p.status }} {{ p.created_at|timeago }}
Show excerpt
{{ p.excerpt }}
{% else %}

No prompts recorded for this session.

{% endif %} {% if traces %}

Decision Trace Entries ({{ traces|length }})

{% for t in traces %} {% endfor %}
Timestamp Action Rule ID Confidence
{{ t.get('timestamp', '—')|timeago }} {{ t.get('action_type', '—') }} {{ t.get('rule_id', '—') }} {{ t.get('confidence', '—') }}
{% endif %}

← Back to home

{% endif %} {% endblock %}