{% if error %}

{{ error }}

{% elif conversation %}

{{ conversation.title or 'Untitled Conversation' }}

{% if conversation.project_id %} {{ conversation.project_id }} {% endif %} {% if conversation.message_count %} {{ conversation.message_count }} messages {% endif %} {% if conversation.created_at %} {{ conversation.created_at[:10] }} {% endif %} {% if conversation.tool %} {{ conversation.tool }} {% endif %}
{% for msg in messages %}
{{ msg.role or 'unknown' }}
{{ msg.content }}
{% endfor %} {% if truncated %}
… {{ remaining }} more message{{ 's' if remaining != 1 else '' }} not shown
{% endif %}
{% else %}

Conversation not found.

{% endif %}