{% extends "base.html" %} {% block title %}Session {{ session.id[:12] if session else 'Not Found' }} — AtlasBridge{% endblock %} {% block content %} {% if not session %}
{% else %}| 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 '—' }} |
| ID | Type | Confidence | Status | Created | Excerpt |
|---|---|---|---|---|---|
| {{ p.id[:12] }}… | {{ p.prompt_type }} | {{ p.confidence }} | {{ p.status }} | {{ p.created_at|timeago }} |
Show excerpt{{ p.excerpt }}
|
No prompts recorded for this session.
{% endif %} {% if traces %}| Timestamp | Action | Rule ID | Confidence |
|---|---|---|---|
| {{ t.get('timestamp', '—')|timeago }} | {{ t.get('action_type', '—') }} | {{ t.get('rule_id', '—') }} | {{ t.get('confidence', '—') }} |