{% extends "base.html" %} {% block title %}aide - Sessions{% endblock %} {% block content %}

Sessions

{% if project_filter %}
Showing sessions for {{ project_filter }} show all
{% endif %}
{% if not subscription_user %} {% endif %} {% for s in sessions %} {% if not subscription_user %} {% endif %} {% endfor %} {% if not sessions %} {% endif %}
Date Project Duration Messages Tools Edits Errors TokensCostCompacted
{% if s.custom_title %} {{ s.custom_title }} {{ s.started_at[:10] }} {{ s.started_at[11:16] }} {% else %} {{ s.started_at[:10] }} {{ s.started_at[11:16] }} {% endif %} {{ s.project_name }} {% set dur = s.active_duration_seconds if s.active_duration_seconds else s.duration_seconds %} {% if dur %} {% set hours = dur // 3600 %} {% set minutes = (dur % 3600) // 60 %} {% if hours > 0 %}{{ hours }}h {{ minutes }}m{% else %}{{ minutes if minutes > 0 else 1 }}m{% endif %} {% if s.work_block_count and s.work_block_count > 1 %} {{ s.work_block_count }} blocks {% endif %} {% else %}—{% endif %} {{ s.message_count }} {{ s.tool_call_count }} {{ s.edits }} {{ s.tool_error_count if s.tool_error_count > 0 else "" }} {%- if s.total_tokens >= 1000000 -%}{{ "%.1f"|format(s.total_tokens / 1000000) }}M {%- elif s.total_tokens >= 1000 -%}{{ (s.total_tokens // 1000)|int }}K {%- else -%}{{ s.total_tokens }}{%- endif -%} {{ "${:,.2f}".format(s.estimated_cost_usd) }} {% if s.had_compaction %}*{% endif %}
No sessions found.
{% endblock %}