{% extends "base.html" %} {% block title %}AI Coach{% endblock %} {% set hide_sidebar = True %} {% block content %}

AI Coach

{% for m in messages %}
{{ m.role }} ยท {{ m.created_at[:10] if m.created_at else '' }}

{{ m.content }}

{% endfor %}

{% endblock %}