{% extends "base.html" %} {% block title %}{{ display_name }} - Claude Code 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 {{ session.id[:8] }}...
{{ session.message_count }} messages
{{ session.filename }} View
{% endfor %}
{% else %}

No Sessions Found

This project doesn't have any conversation sessions yet.

Back to Projects
{% endif %}
{% if sessions|length > 1 %}
Session Activity Timeline
{% for session in sessions[:10] %}
Session {{ session.id[:8] }}...
{{ session.message_count }} messages
{% endfor %}
{% if sessions|length > 10 %}
Showing 10 most recent sessions of {{ sessions|length }} total
{% endif %}
{% endif %} {% endblock %}