{% extends "base.html" %} {% load static %} {% block content %}

Chat Sessions

{% if chats %}
{% for chat in chats %}

Chat Session #{{ chat.id }}

Started {{ chat.created_at|date:"M d, Y" }}

{% endfor %}
{% else %}

No chat sessions found

{% endif %}
{% csrf_token %}
{% endblock content %}