{% extends "base.html" %} {% block title %}Historique des conversations — SPARC{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Retour au chat

Historique des conversations

{{ conversations|length }}
{% if conversations %}
{% for c in conversations %}
{{ c.title or ('Conversation ' + c.id[:8]) }}
{% if c.provider %} {{ c.provider|capitalize }} {% if c.model %} · {{ c.model }}{% endif %} {% endif %} {% if c.token_in or c.token_out %} {{ c.token_in or 0 }} in {{ c.token_out or 0 }} out {% endif %} {% if c.message_count %} {{ c.message_count }} messages {% endif %} {{ c.updated_at or c.created_at or '' }}
{% endfor %}
{% else %}
Aucune conversation sauvegardée.
Démarrer une conversation
{% endif %}
{% endblock %}