{% if error %}

{{ error }}

← Back to Search
{% elif conversation %}
← Back to Search

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

{% if conversation.project_id %} Project: {{ conversation.project_id }} {% endif %} {% if conversation.created_at %} Created: {{ conversation.created_at[:10] }} {% endif %} {% if conversation.message_count %} {{ conversation.message_count }} messages {% endif %} {% if conversation.tool %} {{ conversation.tool }} {% endif %}
{% if code_blocks %}

Code Blocks {{ code_blocks | length }}

{% for block in code_blocks %}
{{ block.language or 'plaintext' }} {{ block.lines }} lines {{ block.role }}
{{ block.code }}
{% endfor %}
{% endif %} {% for msg in (conversation.messages or []) %}
{{ msg.role or 'Unknown' }}
{{ msg.content or '' }}
{% if msg.timestamp %}
{{ msg.timestamp }}
{% endif %}
{% endfor %}
{% else %}

Conversation not found.

← Back to Search
{% endif %}