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

Sessions

{{ sessions|length }} sessions found
{% if sessions %}
{% for s in sessions %}
{{ s.id[:12] }} {{ s.ide }}

Workspace: {{ s.workspace_path }}

{% if s.git_branch %}
Branch: {{ s.git_branch }}
{% endif %}
Started: {{ (s.started_at or "")[:10] }}
{{ s.turn_count }} turns ${{ "%.2f"|format(s.total_cost_usd or 0) }}
{% endfor %}
{% else %}

No sessions found.

{% endif %}
{% endblock %}