{% extends "base.html" %} {% block title %}callmem — Session{% endblock %} {% block content %} {% if session %}
Started: {{ session.started_at[:19] }} · Status: {{ session.status }} · Events: {{ session.event_count }}
{% if session.summary %}| Type | Title | Content |
|---|---|---|
| {{ e.type }} | {{ e.title }} |
{% if e.content and e.content | length > 500 %}
{{ e.content[:500] }}…{{ e.content }}
|
| Time | Type | Content |
|---|---|---|
| {{ ev.timestamp[:16] }} | {{ ev.type }} |
{% if ev.content and ev.content | length > 500 %}
{{ ev.content[:500] }}…{{ ev.content }}
|
Session not found.
{% endif %} {% endblock %}