{% extends "base.html" %} {% block title %}callmem — Session{% endblock %} {% block content %} {% if session %}

Session {{ session.id[:8] }}...

Started: {{ session.started_at[:19] }} · Status: {{ session.status }} · Events: {{ session.event_count }}

{% if session.summary %}
Summary
{{ session.summary }}
{% endif %} {% if entities %}

Extracted Entities

{% for e in entities %} {% endfor %}
TypeTitleContent
{{ e.type }} {{ e.title }} {% if e.content and e.content | length > 500 %}
{{ e.content[:500] }}…
{{ e.content }}
{% else %} {{ e.content or "" }} {% endif %}
{% endif %}

Events

{% for ev in events %} {% endfor %}
TimeTypeContent
{{ ev.timestamp[:16] }} {{ ev.type }} {% if ev.content and ev.content | length > 500 %}
{{ ev.content[:500] }}…
{{ ev.content }}
{% else %} {{ ev.content }} {% endif %}
{% else %}

Session not found.

{% endif %} {% endblock %}