{% extends "base.html" %} {% block title %}Brain MCP — {{ title }}{% endblock %} {% block content %} {% if error is defined and error %}
⚠️ Error

{{ error }}

{% else %}

{{ title }}

{{ source }} · {{ message_count }} messages · {{ conversation_id[:16] }}...

{% for msg in messages %}
{{ msg.role }} {% if msg.date %}{{ msg.date }}{% endif %} {% if msg.word_count %}· {{ msg.word_count }} words{% endif %} {% if msg.has_code %}· 💻 code{% endif %}
{{ msg.content[:5000] }}
{% if msg.content|length > 5000 %}
Show full message ({{ msg.content|length }} chars)
{{ msg.content }}
{% endif %}
{% endfor %}
{% endif %} {% endblock %} {% block scripts %} {% if highlight %} {% endif %} {% endblock %}