{% extends "admin/base_site.html" %} {% load i18n %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %}

← All threads {% if thread %} · Product transcript {% endif %} {% if thread and thread.user %} · User threads · User memories {% endif %}

{% if error %}

{{ error }}

{% endif %} {% if thread %}

Thread: {{ thread.thread_id }}

User: {% if thread.user %} {{ thread.user.get_username }} {% if thread.user.get_full_name %} ({{ thread.user.get_full_name }}) {% endif %} {% elif thread.owner_id %} {{ thread.owner_id }} {% else %} — {% endif %}

Status: {{ thread.status|default:"—" }}

Created: {{ thread.created_at|default:"—" }}

Updated: {{ thread.updated_at|default:"—" }}

{% if thread.is_child %}

Subagent: {{ thread.child_label|default:"yes" }} {% if thread.parent_thread_id %} · Parent thread {% endif %}

{% endif %}

Transcript

{% for msg in thread.messages %}
{{ msg.role }} {% if msg.name %} · {{ msg.name }}{% endif %} {% if msg.truncated %} · truncated{% endif %}
{{ msg.content|linebreaksbr }}
{% empty %}

No messages in this thread.

{% endfor %}
{% if thread.related %} {% endif %} {% endif %}
{% endblock %}