{% extends "base.html" %} {% block title %}Conversation: {{ conversation.conversation_id }}{% endblock %} {% block content %}

{{ conversation.conversation_id }}

Conversation David-Ikario

· · ·

📝 Détails de la conversation

Catégorie: {{ conversation.category }}

Participants: {{ conversation.participants|join(', ') if conversation.participants else 'N/A' }}

Nombre de messages: {{ conversation.message_count }}

Date de début: {{ conversation.timestamp_start[:19].replace('T', ' ') if conversation.timestamp_start else 'Inconnue' }}

{% if conversation.timestamp_end %}

Date de fin: {{ conversation.timestamp_end[:19].replace('T', ' ') }}

{% endif %} {% if conversation.tags and conversation.tags|length > 0 %}

Tags: {{ conversation.tags|join(', ') }}

{% endif %}
{% if conversation.summary %}
Résumé:

{{ conversation.summary }}

{% endif %}

💬 Messages ({{ messages|length }})

{% if messages %}
{% for msg in messages %}
{{ msg.role }} {{ msg.timestamp[:19].replace('T', ' ') if msg.timestamp else 'Date inconnue' }} | Index: {{ msg.order_index }}
{{ msg.content }}
{% endfor %}
{% else %}

Aucun message dans cette conversation

{% endif %}
← Retour aux conversations
{% endblock %}