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

Sessions

Saved follow and recall transcripts.

{% if rows %}
{% for row in rows %} {% set s = row.session %} {% endfor %}
Title Source Summary Commands Started Actions
{{ s.title or "untitled" }} {{ s.source }} {{ s.summary_status }} {{ row.command_count }} {{ s.started_at[:10] }} {{ s.started_at[11:16] }}
View
{% else %} {% set line = "No sessions yet — start one with why follow, or save recent commands with why recall." %} {% include "components/empty_state.html" %} {% endif %}
{% endblock %}