{% extends "base.html" %} {% block title %}AtlasBridge Dashboard — Workspace Detail{% endblock %} {% block content %} {% if not workspace %}
This workspace does not exist or has not been recorded.
{% else %}| ID | {{ workspace.id }} |
|---|---|
| Path | {{ workspace.path }} |
| Path Hash | {{ workspace.path_hash[:16] }}… |
| Trust State | {{ workspace.trust_state }} |
| Expires | {{ workspace.trust_expires_at|timeago }} |
| Actor | {{ workspace.actor or '—' }} |
| Channel | {{ workspace.channel or '—' }} |
| Granted | {{ workspace.granted_at|timeago }} |
| Revoked | {{ workspace.revoked_at|timeago }} |
| Profile | {{ workspace.profile_name }} |
|---|---|
| Autonomy Default | {{ workspace.autonomy_default }} |
| Model Tier | {{ workspace.model_tier }} |
| Tool Profile | {{ workspace.tool_allowlist_profile }} |
| Notes | {{ workspace.posture_notes }} |
| Session ID | Tool | Status | Started | Label |
|---|---|---|---|---|
| {{ s.id[:12] }}… | {{ s.tool }} | {{ s.status }} | {{ s.started_at|timeago }} | {{ s.label or '—' }} |
No sessions recorded for this workspace.
{% endif %}