{% extends "base.html" %} {% block title %}{{ display_name }} - AI Conversation Viewer{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

{{ display_name }}

{{ sessions|length }} session{{ 's' if sessions|length != 1 else '' }}
{% if sessions %}
{% for session in sessions %}

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

{{ session.message_count }} messages
{{ session.size }} bytes
{{ session.modified }}
{{ session.filename }}
View
{% endfor %}
{% if sessions|length > 1 %}

Session Activity Timeline

{% for session in sessions[:10] %}
Session {{ session.id[:8] }}...
{{ session.message_count }} messages
{{ session.modified }}
{% endfor %}
{% if sessions|length > 10 %}

Showing 10 most recent sessions of {{ sessions|length }} total

{% endif %}
{% endif %} {% else %}

No Sessions Found

This project doesn't have any conversation sessions yet.

Back to Projects
{% endif %}
{% endblock %}